2011-12-16 83 views
7

我有一個問題:您的內容必須有一個TabHost其id屬性爲 'android.R.id.tabhost'

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> 

and 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?

+0

您是否嘗試過重建整個項目?有時候eclipse在這些情況下有點buggy – poitroae 2011-12-16 18:23:21

+0

嘗試刪除你的R文件並重建。 – coder 2011-12-16 18:25:54

+0

我嘗試清理該項目,重新啓動它,並刪除R但沒有任何內容。我試圖在另一個應用程序中使用此代碼,它已啓動,但在此不運行 – 2011-12-16 18:33:18

回答

7

如果您使用的是Eclipse,請嘗試從Project > Clean...菜單清理您的版本。聽起來很簡單,但通常可以解決這個問題。

19

相信消息含義:

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

應改爲:

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

你只需要改變的事情就是Android:佈局XML id屬性,它應該是「機器人:id =「@ android:id/tabhost」「

1

我有同樣的問題。 其實我擴展TabActivityDaAcquistareActivity類。這是原因。我通過將DaAcquistareActivityActivity而不是TabActivity解決了問題。

0

解決方案。 如果您切換到新的活動檢查它擴展,也許從主,複製反射,並有一個TabActivity,但我們需要活動或其他活動。

相關問題