创建FragmentTabHost会导致一些麻烦

时间:2013-08-08 22:16:54

标签: java android eclipse android-fragments fragment-tab-host

所以我正在开发一个应用程序,直到现在,我正在使用普通的标签布局和两个活动。现在有人告诉我,使用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还是这样好?

1 个答案:

答案 0 :(得分:4)

  

现在有人告诉我,用FragmentTabHost做它会好得多。

好吧,我做了 sayFragmentTabHost可能是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在文档方面更糟糕,比我在回答你之前的问题时所记得的还要糟糕。