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