程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> fragment-findFragmentByTag()取得的數據都是null

fragment-findFragmentByTag()取得的數據都是null

編輯:編程綜合問答
findFragmentByTag()取得的數據都是null

private static final String FRAGMENT_LEFT_MENU = "fragment_left_menu";
private static final String FRAGMENT_CONTENT = "fragment_content";
/**
* 出社會fragment,將fragment數據填充給布局文件
*/
private void initFragment() {
FragmentManager fm=getSupportFragmentManager();
FragmentTransaction transaction=fm.beginTransaction();
transaction.replace(R.id.fl_left_menu,new LeftMenuFragment(),FRAGMENT_LEFT_MENU);
transaction.replace(R.id.fl_main_menu,new ContentFragment(),FRAGMENT_CONTENT);
transaction.commit();
LeftMenuFragment lefFragment=(LeftMenuFragment) fm.findFragmentByTag(FRAGMENT_LEFT_MENU);
}

lefFragment輸出結果為null  怎麼辦

最佳回答:


我自己解決了 fm必須fm.executePendingTransactions();才能讀取得到數據

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved