1

我正在片段内创建一个 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>

4

1 回答 1

0

您使用错误的方式访问tabhost,其中tabhohst id是自动生成的,但您可以手动传递它。

TabHost tab=getTabhost();

不要传递标签 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" >
于 2013-10-22T12:30:59.107 回答