我在类中创建了FragmentTabHost
:
public class TabsActivity extends FragmentActivity {
private FragmentTabHost mTabHost;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tabs);
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);
TabHost.TabSpec exploreSpec = mTabHost.newTabSpec("explore").setIndicator("Explore", getResources().getDrawable(R.drawable.exploreicon));
mTabHost.addTab(exploreSpec);
}
}
我有一个单独的.xml文件用于设置主机,如android支持网站所示。这是第二项活动。我的主要活动有一组图像。单击一个加载此活动。该应用最初运行。只要我点击图像加载此活动,它就会崩溃。在LogCat内部,我发现了以下错误:
java.lang.IllegalArgumentException: you must specify a way to create the tab content
我似乎无法在此错误中找到任何内容。
答案 0 :(得分:2)
无法看到您的xml文件(R.layout.tabs)我会说某些内容设置不正确。
代替:
TabHost.TabSpec exploreSpec = mTabHost.newTabSpec("explore").setIndicator("Explore", getResources().getDrawable(R.drawable.exploreicon));
mTabHost.addTab(exploreSpec);
<强>尝试:强>
mTabHost.addTab(mTabHost.newTabSpec("explore").setIndicator("Explore", getResources().getDrawable(R.drawable.exploreicon)), TheAssociatedFragmentTab.class, null);
<强> R.layout.tabs.xml 强>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#ffffff" >
<android.support.v4.app.FragmentTabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff" >
<FrameLayout
android:id="@+id/tabcontent"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.app.FragmentTabHost>
</LinearLayout>
除此之外,您只需要一个ExplorerFragment类(扩展片段),它覆盖onCreateView并为您的资源管理器选项卡扩展,如下所示。
ExplorerFragment.java
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
{
super.onCreateView(inflater, container, savedInstanceState);
return inflater.inflate(R.layout.explorer_fragment, container, false);
}
我没有尝试将图片合并到我的标签上,但此代码适用于我。如果有帮助,请告诉我。