我正在创建一个TabHost内部片段。我在fragmentActivity中有2个片段,我想在我的右片段中使用tabhost。但是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>
答案 0 :(得分:0)
你使用错误的方式来访问tabhosthst id自动生成的tabhost但是你可以手动传递它。
TabHost tab=getTabhost();
Donot pass tab id。
<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" >