因此,我正在开发一个应用程序,直到现在,我一直在使用具有两个活动的普通选项卡布局。现在有人告诉我,最好使用FragmentTabHost做到这一点。所以我一直在读一些docs,这是到目前为止我想到的:

MainActivity_Fragment:

public class MainActivity_Fragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.activity_main, container, false);
    }

}


RecordedLibrary_Fragment:

public class RecordedLibrary_Fragment extends Fragment {
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
    Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.activity_recorded_library, container, false);
    }
}


TabLayout活动:

public class TabLayout extends FragmentActivity {

//GLOBAL VARIABLES///////////////
private FragmentTabHost mTabHost;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_tab_layout);

    mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
    mTabHost.setup(this, getSupportFragmentManager(), r.id....); // <-- problem here

    mTabHost.addTab(mTabHost.newTabSpec("Recording").setIndicator("Recording"),
            MainActivity_Fragment.class, null);

    mTabHost.addTab(mTabHost.newTabSpec("Library").setIndicator("Library"),
            RecordedLibrary_Fragment.class, null);
    }
}


现在,这就是我所困的地方。有一些事情在文档中没有解释。所以我有两个问题。

文档中的这一行:

mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);


他们从哪里获得R.id.realtabcontent的?

还有另一件事没有解释;选项卡活动的xml应该如何显示?

我当前的标签布局xml:

<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: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>




如您所见,选项卡布局xml仍然来自旧的选项卡布局。我需要将其调整为FragmentTabLayout还是这样好?

最佳答案

现在有人告诉我,最好使用FragmentTabHost做到这一点。


好吧,我做了say“尽管FragmentTabHost最接近您当前的代码,但它在3中最不受欢迎。”


  他们从哪里获得R.id.realtabcontent的?


这是布局中小部件的ID。具体来说,它将在R.layout.fragment_tabs中,而文档忽略显示。

幸运的是,这似乎来自支持包示例,并且可以在here中找到该布局,在撰写本文时其定义为:

<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">

        <TabWidget
            android:id="@android:id/tabs"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"/>

        <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"/>

    </LinearLayout>
</android.support.v4.app.FragmentTabHost>



  还有另一件事没有解释;选项卡活动的xml应该如何显示?


往上看。


  我需要将其调整为FragmentTabLayout还是这样好?


好吧,如果没有其他要求,您将需要用TabHost替换FragmentTabHost

但是,坦率地说,从文档角度来讲,FragmentTabHost的情况比我在评论您先前的问题时所记得的要差。

10-07 12:23