0
林」嘗試添加FragmentTabHost
一個Fragment
內(這是另一個選項卡窗口小部件的內容內的FragmentTabHost時錯誤使用片段
我用下面的XML:
<android.support.v4.app.FragmentTabHost
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"/>
</LinearLayout>
</android.support.v4.app.FragmentTabHost>
而在我Fragment
的onCreateView()
方法:
View basicSearchView = inflater.inflate(R.layout.search_layout, container, false);
try {
mTabHost = (FragmentTabHost) basicSearchView.findViewById(android.R.id.tabhost);
LocalActivityManager mLocalActivityManager = new LocalActivityManager(this, false);
mTabHost.setup(mLocalActivityManager);
TabHost.TabSpec tab = mTabHost.newTabSpec("my tab content");
tab.setContent(new Intent(getActivity(), JoinActivity.class));
tab.setIndicator("Test", getResources().getDrawable(R.drawable.search_pheeds_selector));
mTabHost.addTab(tab);
}
catch (Exception e) {
Log.e("Udi",e.getMessage());
}
return basicSearchView;
起初IGOT以下錯誤:
ERROR/Udi(25726): Must call setup() that takes a Context and FragmentManager
之後我已經改變了設置到:
mTabHost.setup(getActivity(), getChildFragmentManager(), R.id.realtabcontent);
而且我得到了這個錯誤,而不是:
ERROR/Udi(25996): Did you forget to call 'public void setup(LocalActivityManager activityGroup)'?
有沒有把Fragment
內接頭主機有道?