您的内容必须有一个TabHost,其id属性为'android.R.id.tabhost'

时间:2011-12-16 18:20:41

标签: android android-tabhost android-logcat

我遇到了问题:

Java代码

public class VisualizzaListaActivity extends TabActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    TabHost tabHost = getTabHost();  // The activity TabHost
    TabHost.TabSpec spec;  // Reusable 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, DaAcquistareActivity.class);

    // Initialize a TabSpec for each tab and add it to the TabHost
    spec = tabHost.newTabSpec("daAcquistare").setIndicator("Da Acquistare").setContent(intent);
    tabHost.addTab(spec);

    // Do the same for the other tabs
    intent = new Intent().setClass(this, AcquistatiActivity.class);
    spec = tabHost.newTabSpec("acquistati").setIndicator("Acquistati").setContent(intent);
    tabHost.addTab(spec);

    tabHost.setCurrentTab(0);
}

}

XML代码

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"   <-------------- It's 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"
   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" />
</LinearLayout>
</TabHost>

和LogCat

12-16 15:26:22.519: E/AndroidRuntime(8262): java.lang.RuntimeException: Unable to start activity ComponentInfo{android.smile.matteo.spesaPRO/android.smile.matteo.spesaPRO.VisualizzaListaActivity}: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'             
12-16 15:26:22.519: E/AndroidRuntime(8262): Caused by: java.lang.RuntimeException: Your content must have a TabHost whose id attribute is 'android.R.id.tabhost'
12-16 15:26:22.519: E/AndroidRuntime(8262):         at android.smile.matteo.spesaPRO.VisualizzaListaActivity.onCreate(VisualizzaListaActivity.java:13)

问题

有人可以告诉我为什么会说

  

您的内容必须有一个TabHost,其id属性为'android.R.id.tabhost'

当android:id = @android:id / tabhost?

5 个答案:

答案 0 :(得分:20)

我相信这个消息意味着:

     <TabHost android:id="@+id/tabhost"

应更改为:

     <TabHost android:id="@android:id/tabhost"

答案 1 :(得分:7)

如果您使用的是Eclipse,请尝试从Project > Clean...菜单清除构建。听起来很简单,但经常解决这个问题。

答案 2 :(得分:2)

你需要改变的只是布局xml中的android:id属性,它应该是“android:id =”@ android:id / tabhost“”

答案 3 :(得分:1)

我遇到了同样的问题。 实际上我为TabActivity课程延长了DaAcquistareActivity。这就是原因。我通过使用DaAcquistareActivity而不是Activity扩展TabActivity来解决问题。

答案 4 :(得分:0)

解。 如果您要切换到新的活动检查,可能会在从主要复制的反射中扩展,并且有TabActivity ,但我们需要活动或其他活动。 < / p>