Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> android Tabhost部件

android Tabhost部件

編輯:Android開發實例

     本文結合源代碼和實例來說明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文件需要TabWidgetFrameLayout標簽。

接下來構建我們自己的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,也就是接下來的代碼:


 還有一種就是定義我們自己的tabhost:不用繼承TabActivity

 首先建立我們自己的.xml文件,當然要包含Tabhost,TabWidget,FrameLayout,著3個標簽:

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(); 這個方法調用後就已經設置了,源代碼:
  
也就是把系統的tab_content當做view設置。
運行後如下:
 
完整代碼:
 

if (mTabHost == null) {
this.setContentView(com.android.internal.R.layout.tab_content);

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)); 
 

<?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 [email protected] 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)); 
  運行結果同上。 如有問題歡迎提出。



加上源代碼

轉自:http://www.blogjava.net/freeman1984/archive/2009/11/18/302803.html

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved