Android中FragmentTabHost中的TabContent

时间:2014-04-18 17:33:13

标签: android android-fragments fragment

我是Android中的菜鸟。我已设置FragmentTabHost现在我有一个问题,ViewGroup FragmeLayout名为" tabcontent"。有什么用呢?

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">


    <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:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="0"
        android:orientation="horizontal" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

在TabContet中,您可以在其中定义每个选项卡的根元素。 有一个示例使用Tabroll中的两个选项卡的Scrollview和Relative布局。 我建议您使用Tabhost作为tabwidget的父级。

 <TabHost
  android:id="@android:id/tabhost"
  android:layout_width="match_parent"
  android:layout_height="fill_parent">

      <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="fill_parent"
      android:orientation="vertical" >

          <TabWidget
           android:id="@android:id/tabs"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"/>

              <FrameLayout
              android:id="@android:id/tabcontent"
              android:layout_width="match_parent"
              android:layout_height="fill_parent" >

                  <ScrollView
                   android:id="@+id/tab1"
                   android:layout_width="match_parent"
                   android:layout_height="fill_parent">
                  </ScrollView>

                  <RelativeLayout
                   android:id="@+id/tab2"
                   android:layout_width="match_parent"
                   android:layout_height="fill_parent"
                   android:orientation="vertical" >
                  </RelativeLayout>

            </FrameLayout>
       </LinearLayout>
 </TabHost>

之后,在您的活动中以编程方式初始化选项卡lkie this

TabHost tabs=(TabHost)findViewById(android.R.id.tabhost);
tabs.setup();


    TabHost.TabSpec spec=tabs.newTabSpec("Tittle");
    spec.setContent(R.id.tab1);
    spec.setIndicator("Tab 1");
    tabs.addTab(spec);

    spec=tabs.newTabSpec("Tittle");
    spec.setContent(R.id.tab2);
    spec.setIndicator("Tab 2");
    tabs.addTab(spec);

    tabs.setCurrentTab(0);

希望对你有所帮助。