AndroidUI組件之TabHost

來源:互聯網
上載者:User

標籤:介面   android平台   tabhost   布局   

package com.gc.tabhost;/** * @author Android將軍 *  *  *  * 1、TabHost是一種非常實用的組件,TabHost可以很方便地在視窗上放置 * 多個標籤頁,每個標籤頁相當於獲得了一個與外部容器相同大小的組件 * 擺放地區。通過這種方式,就可以在一個容器裡放置更多組件。 * 2、與TabHost結合使用的還有如下組件: * TabWidget:代表選項卡的標籤條。 * TabSpec:代表選項卡的一個Tab頁面。 * 3、TabHost僅僅是一個簡單的容器,它提供了如下兩個方法來建立、添加 * 選項卡: * newTabSpec(String tag):建立選項卡。 * addTab(TabHost.TabSpec tabSpec):添加選項卡。 * 4、使用TabHost的一般步驟如下: * (1)在介面布局中定義TabHost組件,並為該組件定義該選項卡的內容 * (2)Activity應該繼承TabActivity * (3)調用TabActivity的getTabHost()方法擷取TabHost對象 * (4)通過TabHost對象的方法來建立、添加選項卡。 * 5、TabHost容器內部需要組合兩個組件:TabWidget和FrameLayout * ,其中TabWidget定義選項卡的標題條:FrameLayout則用於“層疊”組合多個選項 * 頁面。 * 6、注意: * 在ID的書寫時不時開發人員自己書寫,TabHost、TabWidget和FrameLayout * 這三個組件的ID是有要求的: * TabHost的ID應該為@android:id/tabhost * TabWidget的ID應該為@android:id/tabs * FrameLayout的ID應該為@android:id/tabcontent. * 這三個ID不是我們自己定義的,而是引用了Android系統已有的ID。 * 7、最新版本的Android平台已經不再推薦使用TabActivity,而是推薦使用 * Fragment來代替TabActivity。 */import android.os.Bundle;import android.app.Activity;import android.app.TabActivity;import android.view.Menu;import android.widget.TabHost;import android.widget.TabHost.TabSpec;public class MainActivity extends TabActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//擷取該Activity裡面的TabHost組件TabHost tabHost=getTabHost();//建立第一個Tab頁TabSpec tab1=tabHost.newTabSpec("tab1").setIndicator("Android將軍1").setContent(R.id.tab01);//添加第一個標籤頁tabHost.addTab(tab1);TabSpec tab2=tabHost.newTabSpec("tab2").setIndicator("Android將軍2",getResources().getDrawable(R.drawable.ic_launcher)).setContent(R.id.tab02);//添加第二個標籤頁tabHost.addTab(tab2);TabSpec tab3=tabHost.newTabSpec("tab3").setIndicator("Android將軍3").setContent(R.id.tab03);//添加第三個標籤頁tabHost.addTab(tab3);}}
相應的xml布局檔案為:
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"    android:id="@android:id/tabhost"    android:layout_width="match_parent"    android:layout_height="match_parent"      >  <RelativeLayout       android:layout_width="fill_parent"      android:layout_height="fill_parent"      >        </RelativeLayout>  <LinearLayout       android:layout_width="match_parent"      android:layout_height="match_parent"      android:orientation="vertical"      >    <RelativeLayout         android:layout_width="fill_parent"        android:layout_height="fill_parent"                >         <FrameLayout           android:id="@android:id/tabcontent"          android:layout_width="match_parent"          android:layout_height="match_parent"          >          <!-- 定義第一個標籤頁的內容 -->          <LinearLayout               android:id="@+id/tab01"              android:orientation="vertical"              android:layout_width="fill_parent"              android:layout_height="fill_parent"              >              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="Android將軍"                  />              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="赳赳老秦,共赴國難,秦朝將軍"                  />          </LinearLayout>            <!-- 定義第二個標籤頁的內容 -->          <LinearLayout               android:id="@+id/tab02"              android:orientation="vertical"              android:layout_width="fill_parent"              android:layout_height="fill_parent"              >              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="Android將軍2"                  />              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="赳赳老秦,共赴國難,秦朝將軍2"                  />          </LinearLayout>            <!-- 定義第三個標籤頁的內容 -->          <LinearLayout               android:id="@+id/tab03"              android:orientation="vertical"              android:layout_width="fill_parent"              android:layout_height="fill_parent"              >              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="Android將軍3"                  />              <TextView                   android:layout_width="fill_parent"                  android:layout_height="wrap_content"                  android:text="赳赳老秦,共赴國難,秦朝將軍3"                  />          </LinearLayout>      </FrameLayout>              <TabWidget           android:id="@android:id/tabs"          android:layout_width="match_parent"          android:layout_height="wrap_content"          android:layout_alignParentBottom="true"          />    </RelativeLayout>       </LinearLayout></TabHost>

程式運行為:

轉載請註明出處:http://blog.csdn.net/android_jiangjun/article/details/25346627

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.