我正在尝试为我的活动实施Tab View。我收到一个错误。
java.lang.IllegalArgumentException:您必须指定一种创建标签指示符的方法
Resources res = getResources(); // Resource object to get Drawables
TabHost tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab
// Create an Intent to launch an Activity for the tab (to be reused)
intent = new Intent().setClass(this, MonthActivity.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("Month")
.setContent(intent);
tabHost.addTab(spec);
// Do the same for the other tabs
intent = new Intent().setClass(this, WeekActivity.class);
spec = tabHost.newTabSpec("Week")
.setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, DayActivity.class);
spec = tabHost.newTabSpec("Day")
.setContent(intent);
tabHost.addTab(spec);
tabHost.setCurrentTab(2);
这是我的xml,我已经在清单中声明了活动。
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:padding="5dp" >
<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"
android:padding="5dp" >
</FrameLayout>
</LinearLayout>
我在哪里弄错了?感谢您的时间和意见。
答案 0 :(得分:8)
试试这个:
Resources res = getResources(); // Resource object to get Drawables
tabHost = getTabHost(); // The activity TabHost
TabHost.TabSpec spec; // Resusable TabSpec for each tab
Intent intent; // Reusable Intent for each tab
intent = new Intent().setClass(this, First.class);
spec = tabHost.newTabSpec("First Tab").setIndicator("First Tab",res.getDrawable(R.drawable.icon)).setContent(intent);
tabHost.addTab(spec);
intent = new Intent().setClass(this, Second.class);
spec = tabHost.newTabSpec("Second Tab").setIndicator("Second Tab",res.getDrawable(R.drawable.icon)).setContent(intent);
tabHost.addTab(spec);
tabHost.setCurrentTab(1);
并确保您的活动必须是TabActivity
,您可以在其中定义TabHost。
答案 1 :(得分:4)
更明确和准确的答案是您没有在TabHost.TabSpec对象上调用setIndicator方法,因此如果您将此调用添加到每个选项卡规范对象,您的问题将得到解决。
spec.setIndicator(“Tab 1”);