程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> fragment-Fragment不能為ID找到視圖

fragment-Fragment不能為ID找到視圖

編輯:編程綜合問答
Fragment不能為ID找到視圖

我想在view中添加一個fragment。

FragmentManager fragMgr=getSupportFragmentManager();
    feed_parser_activity content=
        (feed_parser_activity)fragMgr.findFragmentById(R.id.feedContentContainer);
    FragmentTransaction xaction=fragMgr.beginTransaction();

    if (content==null || content.isRemoving()) {
        content=new feed_parser_activity(item.getLink().toString());

        xaction
            .add(R.id.feedContentContainer, content)
            .setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN)
            .addToBackStack(null)
            .commit();
        Log.e("Abstract", "DONE");
    }

當上面這段代碼執行後,在 debug中顯示錯誤:

12-25 19:45:19.040: ERROR/AndroidRuntime(2835): java.lang.IllegalArgumentException: No view found for id 0x7f080011 for fragment feed_parser_activity{41882f50 #2 id=0x7f080011}

feed_parser_activity是一個 Fragment,在xml中設置 Fragment 布局。

我用FragmentActivity來控制擁有feed_parser_layout布局的Fragment Layout。
以上的設置為什不正確呢?

最佳回答:


setContentView()中指定了錯誤的布局,setContentView()FragmentActivity的onCreate()方法中。id傳遞到FragmentTransaction.add(),在你的例子中R.id.feedContentContainer必須是setContentView()中指定的布局的子類。所以就不用onCreate()方法。

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