我正在片段内创建一个 TabHost。我的 fragmentActivity 中有 2 个片段,我希望在我的右侧片段中有标签主机。但 TabHost 没有显示,并且活动被强制关闭,给出 nullpointerexception
这是我调用 TabHost 的片段中的代码
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.menucat, container, false);
mTabHost=(TabHost)getView().findViewById(android.R.id.tabhost);
TabHost.TabSpec spec;
mTabHost.setup();
intent=new Intent(getActivity(),Activity1.class);
spec = mTabHost.newTabSpec("soups").setIndicator("Soups").setContent(intent);
mTabHost.addTab(spec);
mTabHost.setCurrentTab(0);
return view;
}
这是我用来创建tabhost的布局。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:visibility="gone"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
</LinearLayout>
</TabHost>