TabHost选项卡的实现(一):使用TabActivity实现
一、 TabHost的基本開發流程
TabHost是一種非常實用的組件,可以很方便的在窗口上防止多個標簽頁,每個標簽頁相當于獲得了一個外部容器相同大小的組件擺放區域。
我們熟悉的手機電話系統“未接電話”、“已接電話”、“呼出電話”就可以使用TabHost實現。
1.1 與TabHost結合使用的組件
· TabWidget: 代表選項卡的標簽條。
· TabSpec: 代表選項卡的一個Tab頁面。
1.2 TabHost提供的創建選項卡方法
TabHost中常用方法;
·?void?addTab(TabHost.TabSpec tabSpec) 添加一個標簽頁
·?int getCurrentTab() 獲取當前的標簽頁id
·?String?getCurrentTabTag() 獲取當前的標簽頁的Tag
·?TabHost.TabSpec ?newTabSpec(String tag) 創建一個TabSpec
·?void?setCurrentTab(int index) 設置一個標簽頁的id
·?void?setCurrentTabByTag(String tag) 設置一個標簽頁的Tag
TabSpec中常用的方法:
·?String?getTag()?
·?TabHost.TabSpec setContent(int viewId) 通過指定布局文件,設置標簽頁的內容
·?TabHost.TabSpec setContent(Intent intent) 通過指定Intent所指定的Activity,設置標簽頁的內容
·?TabHost.TabSpec setIndicator(CharSequence label) 設置該標簽頁的標題
·?TabHost.TabSpec setIndicator(CharSequence label, Drawable icon)? 設置該標簽頁的標題和圖標
1.3 開發流程
· 在界面布局中定義TabHost組件,并為該組件定義該選項卡的內容
· Activity應該繼承TabActivity。
· 調用TabActivity的getTabHost()方法獲取TabHost對象。
· 通過TabHost對象的方法來創建、添加選項卡。
二、 實現TabHost布局的通話記錄界面
1) 首先,我們定義TabHost需要顯示的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="match_parent"android:layout_height="match_parent"android:layout_weight="1" ><LinearLayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical" ><TabWidgetandroid:id="@android:id/tabs"android:layout_width="match_parent"android:layout_height="wrap_content" /><FrameLayoutandroid:id="@android:id/tabcontent"android:layout_width="match_parent"android:layout_height="match_parent" ><!-- 定義第一個標簽頁的內容 --><LinearLayoutandroid:id="@+id/tab01"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="殺生丸 - 2014-9-26"android:textSize="11pt" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="犬夜叉 - 2014-9-26"android:textSize="11pt" /></LinearLayout><!-- 定義第二個標簽頁的內容 --><LinearLayoutandroid:id="@+id/tab02"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical" ><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="桔梗 - 2014年9月26日"android:textSize="11pt" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="彌勒 - 2014年9月26日"android:textSize="11pt" /></LinearLayout><!-- 定義第三個標簽頁的內容 --><LinearLayoutandroid:id="@+id/tab03"android:layout_width="fill_parent"android:layout_height="fill_parent"android:orientation="vertical"android:textSize="11pt" ><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="銀月 - 2014年9月26日"android:textSize="11pt" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="寒食 - 2014-9-26"android:textSize="11pt" /></LinearLayout></FrameLayout></LinearLayout> </TabHost>對于上述布局文件,我們有三個地方的ID需要注意:
1. TabHost的ID應該為@android:id/tabhost
2. TabWidget的ID應該為@android:id/tabs
3. FrameLayout的ID應該為@android:id/tabcontent
這三個ID并不是程序員自定義的,而是Android系統提供的,必須按照如此方法設置。
2) Java代碼,將三個tab添加到容器中
效果圖:
說明; 如今,我們已經不再推薦使用TabActivity來創建標簽頁了,更加推薦使用Fragment代替TabActivity,請看下章講解如何去實現Fragment的TabHost。
轉載于:https://www.cnblogs.com/hehe520/p/6330014.html
總結
以上是生活随笔為你收集整理的TabHost选项卡的实现(一):使用TabActivity实现的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 深入理解javascript原型和闭包(
- 下一篇: hdu 3863 No Gambling