2012-02-02 39 views
-1

嗨我是一個真正的新手在android和真正越來越絕望在這個顯然簡單的嘗試與TabActivity。該應用程序崩潰與「意外停止」錯誤。我試圖從在線教程運行代碼,但每次都出現相同的錯誤。所以這裏是令人尷尬的簡單代碼。應用程序崩潰在TabActivity

import android.app.TabActivity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.widget.TabHost; 

public class MainLanding extends TabActivity { 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.mainlandingtab); 

    TabHost mainLandingTab = getTabHost(); 
    TabHost.TabSpec spec; 

    Intent intent = new Intent().setClass(this, AccountActivity.class); 
    spec = mainLandingTab.newTabSpec("account"); 
    spec.setContent(intent); 
    spec.setIndicator("Account"); 
    mainLandingTab.addTab(spec); 
    mainLandingTab.getTabWidget().getChildAt(0).getLayoutParams().height = 40; 

    intent = new Intent().setClass(this, ProfileActivity.class); 
    spec.setContent(intent); 
    spec.setIndicator("Profile"); 
    mainLandingTab.addTab(spec); 
    mainLandingTab.getTabWidget().getChildAt(1).getLayoutParams().height = 40; 

    intent = new Intent().setClass(this, SocialActivity.class); 
    spec.setContent(intent); 
    spec.setIndicator("Social"); 
    mainLandingTab.addTab(spec); 
    mainLandingTab.getTabWidget().getChildAt(2).getLayoutParams().height = 40; 
    } 
} 

這裏是mainlandingtab.xml文件。

<?xml version="1.0" encoding="utf-8"?> 
<TabHost android:layout_width="fill_parent" 
android:layout_height="fill_parent" android:id="@+id/tabHost" 
xmlns:android="http://schemas.android.com/apk/res/android"> 
    <LinearLayout android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:orientation="vertical"> 
     <TabWidget android:layout_width="fill_parent" 
      android:layout_height="wrap_content" android:id="@android:id/tabs" /> 
     <FrameLayout android:layout_width="fill_parent" 
      android:layout_height="fill_parent" android:id="@android:id/tabcontent"/> 
    </LinearLayout> 
</TabHost> 

而且清單文件

<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
package="com.mobile.banking" android:versionCode="1" 
android:versionName="1.0"> 

<uses-sdk android:minSdkVersion="7" /> 

<application android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name"> 
    <activity android:label="@string/app_name" 
     android:theme="@android:style/Theme.NoTitleBar" 
     android:name=".StartupActivity"> 
     <intent-filter> 
      <action android:name="android.intent.action.MAIN" /> 

      <category android:name="android.intent.category.LAUNCHER" /> 
     </intent-filter> 
    </activity> 

    <activity android:name=".MainLanding" /> 

    <activity android:name=".AccountActivity" /> 
    <activity android:name=".ProfileActivity" /> 
    <activity android:name=".SocialActivity" /> 
    <activity android:name=".SignInActivity"></activity> 
</application> 

</manifest> 

還有其他的活動也可在其中運行正常,但當MainLanding類被調用時,它的應用程序崩潰。

的logcat的錯誤說:你的內容必須有一個TabHost其id屬性爲「android.R.id.tabhost」

我不知道這有什麼錯此代碼。請幫忙!!

+1

什麼是例外仔細看? – 2012-02-02 11:51:57

+0

這是錯誤:E/AndroidRuntime(479):java.lang.RuntimeException:無法啓動活動ComponentInfo {com.mobile.banking/com.mobile.banking.MainLanding}:java.lang.RuntimeException:您的內容必須具有一個TabHost,其id屬性是'android.R.id.tabhost' – 2012-02-02 11:57:56

回答

2

您應該確定您的tabhost就象這樣:

<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"> 

,並在ID

+0

哦,我的上帝,它的工作!我是個白癡!謝謝一堆! :D – 2012-02-02 12:07:08

+0

請將其標記爲答案 – 2012-02-02 12:08:16