我试图在 a 中添加FragmentTabHost
一个Fragment
(这是另一个选项卡小部件的内容。
我使用了以下 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;
起初我得到以下错误:
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
?