1

所以我正在开发一个应用程序,直到现在,我都在使用带有两个活动的普通选项卡布局。现在有人告诉我使用 FragmentTabHost 会更好。所以我一直在阅读一些文档,这就是我到目前为止想出的:

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);
    }
}

选项卡布局活动:

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 还是这样好?

4

1 回答 1

4

现在有人告诉我使用 FragmentTabHost 会更好。

好吧,我确实 说过FragmentTabHost可能是 3 个中最不受欢迎的,尽管它最接近您当前的代码。”

他们从哪里得到 R.id.realtabcontent ?

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

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

<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 还是这样好?

好吧,如果不出意外,您将需要替换TabHostFragmentTabHost.

但是,坦率地说,FragmentTabHost在文档方面,比我在评论你之前的问题时记忆中的情况更糟。

于 2013-08-08T22:29:03.043 回答