本文結合原始碼和執行個體來說明TabHost的用法。
使用TabHost 可以在一個螢幕間進行不同版面的切換,例如android內建的撥號應用,:
查看tabhost的原始碼,主要執行個體變數有:
private TabWidget mTabWidget;
private FrameLayout mTabContent;
private List<TabSpec> mTabSpecs
也就是說我們的tabhost必須有這三個東西,所以我們的.xml檔案就會有規定:繼續查看原始碼:
if (mTabWidget == null) {
throw new RuntimeException(
"Your TabHost must have a TabWidget whose id attribute is 'android.R.id.tabs'");
}
mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);
if (mTabContent == null) {
throw new RuntimeException(
"Your TabHost must have a FrameLayout whose id attribute is 'android.R.id.tabcontent'");
}
也就是說我們的.xml檔案需要TabWidget和FrameLayout標籤。
接下來構建我們自己的tab執行個體:
有兩種方式可以實現:
一種是繼承TabActivity 類,可以使用android的自己內部定義好的.xml資源檔作容器檔案。也就是在我們的代碼中使用getTabHost(); , 而相應的後台源碼是這樣的:
this.setContentView(com.android.internal.R.layout.tab_content);
在系統的資源檔中可以看見這個layout
有了容器,然後我們就需要我們為每個tab分配內容,當然要可以是如何類型的標籤:
例如我們構建一下.xml檔案
首先tab1.xml 是一個LinearLayout布局
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text="tab1 with linear layout"
android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
</LinearLayout>
然後是tab2.xml是一個FrameLayout布局
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/FrameLayout02"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout android:id="@+id/LinearLayout02"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:text="tab2"
android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content">
</TextView>
</LinearLayout>
</FrameLayout>
接著要註冊這兩個FrameLayout為tabhost的Content,也就是接下來的代碼:
LayoutInflater inflater_tab1 = LayoutInflater.from(this);
inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());
inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());
然後需要構建前面說的tabhost的第三個執行個體變數對應得內容,原始碼中是這樣的:
private List<TabSpec> mTabSpecs = new ArrayList<TabSpec>(2);
初始化是兩個tab的空間然後會自動擴充:
好 我們構建我們的tabspec:
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 11").setContent(R.id.LinearLayout01));
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 11").setContent(R.id.FrameLayout02));
也就是把我們的2個layout作為他的content,當然FrameLayout中可以有其他的布局,來放我的組件。
我們不需要在代碼裡面設定setContentView();因為getTabHost(); 這個方法調用後就已經設定了,原始碼:
if (mTabHost == null) {
this.setContentView(com.android.internal.R.layout.tab_content);
}
也就是把系統的tab_content當做view設定。
運行後如下:
完整代碼:
TabHost mTabHost = getTabHost();
LayoutInflater inflater_tab1 = LayoutInflater.from(this);
inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());
inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 11").setContent(R.id.LinearLayout01));
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB 11").setContent(R.id.FrameLayout02));
還有一種就是定義我們自己的tabhost:不用繼承TabActivity
首先建立我們自己的.xml檔案,當然要包含Tabhost,TabWidget,FrameLayout,著3個標籤:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+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">
</FrameLayout>
</LinearLayout>
</TabHost>
注意的是:除了tabhost的id可以自訂外,其他的必須使用系統的id,為什麼後面說,
當然我們可以在FrameLayout裡面添加view來作為tab的內容只需要在create tabspce時候添加就可以了,我們為了把每個tab的內容分開我們依然使用前面用到的兩個tab xml檔案
java代碼:
擷取TabHost 通過findviewbyid,
setContentView(R.layout.main);
TabHost mTabHost = (TabHost)findViewById(R.id.tabhost);
接下來很重要的一步是要使用TabHost.setup();
作用是來初始化我們的TabHost容器:
原始碼是這樣說的:
<p>Call setup() before adding tabs if loading TabHost using findViewById(). <i><b>However</i></b>: You do
* not need to call setup() after getTabHost() in {@link android.app.TabActivity TabActivity}.
也就是說通過findviewbyid,方法獲得tabhost必須setup 而通過getTabHost則不用。
setup幹什麼呢:原始碼
mTabWidget = (TabWidget) findViewById(com.android.internal.R.id.tabs);
if (mTabWidget == null) {
throw new RuntimeException(
"Your TabHost must have a TabWidget whose id attribute is 'android.R.id.tabs'");
}
mTabContent = (FrameLayout) findViewById(com.android.internal.R.id.tabcontent);
if (mTabContent == null) {
throw new RuntimeException(
"Your TabHost must have a FrameLayout whose id attribute is 'android.R.id.tabcontent'");
}
他主要是初始化了tabhost的兩個執行個體變數,這裡也回答了為什麼我們的id必須使用系統定義的id的原因
接下來工作就和前面相同了:
LayoutInflater inflater_tab1 = LayoutInflater.from(this);
inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());
inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB a").setContent(R.id.LinearLayout01));
mTabHost.addTab(mTabHost.newTabSpec("tab_test2").setIndicator("TAB b").setContent(R.id.FrameLayout02));
完整代碼:
setContentView(R.layout.main);
TabHost mTabHost = (TabHost)findViewById(R.id.tabhost);
mTabHost.setup();
LayoutInflater inflater_tab1 = LayoutInflater.from(this);
inflater_tab1.inflate(R.layout.tab1, mTabHost.getTabContentView());
inflater_tab1.inflate(R.layout.tab2, mTabHost.getTabContentView());
mTabHost.addTab(mTabHost.newTabSpec("tab_test1").setIndicator("TAB a").setContent(R.id.LinearLayout01));
mTabHost.addTab(mTabHost.newTabSpec("tab_test2").setIndicator("TAB b").setContent(R.id.FrameLayout02));
運行結果同上。 如有問題歡迎提出。
轉載請說明出處。。。
加上原始碼,有用了可以下載下:/Files/freeman1984/atab.rar
本文來自CSDN部落格,轉載請標明出處:http://blog.csdn.net/lastsweetop/archive/2010/05/07/5566200.aspx