2011-06-29 67 views
2

我是Android應用程序開發的新手,我試圖創建一個嵌套選項卡。這是我首先創建三個選項卡,然後我將第一個選項卡的內容定義爲另一個選項卡活動。我所做的如下所示:Android新手,爲什麼我的嵌套選項卡不工作?

我定義主標籤活性(與第一選項卡的內容是另一選項卡的活性):

RES /佈局/ main.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:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 
     <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"> 

      <TextView 
       android:id="@+id/textview2" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:text="this is another tab" /> 
      <TextView 
       android:id="@+id/textview3" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:text="this is a third tab" /> 
     </FrameLayout> 
    </LinearLayout> 
</TabHost> 

我的主要選項卡活動類:

public class MyTest extends TabActivity{ 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     mTabHost = getTabHost(); 

     //the first tab's content is another tabs activity   
     Intent tabs2=new Intent(this, SecondTabsActivity.class); 
     mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 1").setContent(tabs2)); 

     //other tabs' content are just TextView 
     mTabHost.addTab(mTabHost.newTabSpec("tab_test2").setIndicator("TAB 2").setContent(R.id.textview2)); 
     mTabHost.addTab(mTabHost.newTabSpec("tab_test3").setIndicator("TAB 3").setContent(R.id.textview3)); 

     mTabHost.setCurrentTab(0); 
    } 
} 

正如您上面所看到的,我想第一個選項卡是另一個選項卡活動的內容,所以I F首先定義了二級標籤的意圖,然後將第一個標籤的內容設置爲該意圖。

的第二級標籤佈局:

RES /佈局/ level2tabs.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:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 
     <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"> 
      <TextView 
       android:id="@+id/textview1" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:text="this is a tab" /> 
      <TextView 
       android:id="@+id/textview2" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:text="this is another tab" /> 
      <TextView 
       android:id="@+id/textview3" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:text="this is a third tab" /> 
     </FrameLayout> 
    </LinearLayout> 
</TabHost> 

爲2級標籤中的相應的類:

public class SecondTabsActivity extends TabActivity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.level2tabs); 

     TabHost mTabHost = getTabHost(); 

     mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 1").setContent(R.layout.nestedtabs)); 
     mTabHost.addTab(mTabHost.newTabSpec("tab_test2").setIndicator("TAB 2").setContent(R.id.textview2)); 
     mTabHost.addTab(mTabHost.newTabSpec("tab_test3").setIndicator("TAB 3").setContent(R.id.textview3)); 

     mTabHost.setCurrentTab(0); 
    } 

但是當我運行應用程序,它意外停止。我不知道我在哪裏錯了我的嵌套選項卡? }

+0

顯示您的logcat錯誤。你到底在做什麼錯誤? – Sujit

+0

@Sujit,我是一個新手,我不知道如何顯示邏輯錯誤?從eclipse控制檯,我沒有得到任何錯誤消息,我只收到來自仿真器的錯誤信息,彈出一條警告消息「應用程序意外停止。請再試一次」 – Leem

+1

看到這個http://developer.android.com/指南/開發/調試/ ddms.html – Sujit

回答

2

使用<activity android:name=".SecondTabsActivity"/>的AndroidManifest.xml文件中應用標籤。

+0

謝謝。我錯過了創建活動的這一步。 – Leem