詳細自定義TabHost

Tab 與TabHost
這就是Tab,而盛放Tab 的容器就是TabHost
如何實現??
每個Tab 還對應了一個佈局,這個就有點好玩了。一個Activity,對應了多個功能佈局。
① 新建一個Tab 項目,注意,不要生成main Activity
這裏不要選
② 在包裏面新建一個類MyTab,繼承於TabActivity
其實,TabActivity 是Activity 的子類
package zyf.tab.test;
import android.app.TabActivity;
public class MyTab extends TabActivity {
}
③ 從父類繼承OnCreate()入口方法
package zyf.tab.test;
import android.app.TabActivity;
import android.os.Bundle;
public class MyTab extends TabActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
}
} android

④ 在Manifest.xml 文件中註冊一下MyTab 類(Activity)
<activity android:name=".MyTab">
<intent-filter>
<action android:name="android.intent.action.MAIN"></action>
<category android:name="android.intent.category.LAUNCHER"></category>
</intent-filter>
</activity>
⑤ 這時候,須要設計一下標籤頁對應的佈局,通常採用FrameLayout 做爲根佈局,每一個標
籤頁面對應一個子節點的Layout
<?xml version="1.0" encoding="utf-8"?>
<!-- 這裏是根節點佈局-- >
<FrameLayout xmlns:android=" http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <!-- 第一個Tab 對應的佈局-- > <LinearLayout android:id="@+id/widget_layout_Blue" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <EditText android:id="@+id/widget34" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="EditText" android:textSize="18sp"> </EditText> <Button android:id="@+id/widget30" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button"> </Button> </LinearLayout> <!-- 第二個Tab 對應的佈局-- > <LinearLayout android:id="@+id/widget_layout_red" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <AnalogClock android:id="@+id/widget36" android:layout_width="wrap_content" android:layout_height="wrap_content"> </AnalogClock> </LinearLayout> <!-- 第三個Tab 對應的佈局-- > <LinearLayout android:id="@+id/widget_layout_green" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <RadioGroup android:id="@+id/widget43" android:layout_width="166px" android:layout_height="98px" android:orientation="vertical"> <RadioButton android:id="@+id/widget44" android:layout_width="wrap_content" android:layout_height="wrap_content"android:text="RadioButton"> </RadioButton> <RadioButton android:id="@+id/widget45" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="RadioButton"> </RadioButton> </RadioGroup> </LinearLayout> </FrameLayout> ⑥ 首先,應該聲明TabHost,而後用LayoutInflater 過濾出佈局來,給TabHost 加上含有Tab 頁面的FrameLayout private TabHost myTabhost; myTabhost=this.getTabHost();//從TabActivity 上面獲取放置Tab 的TabHost LayoutInflater.from(this).inflate(R.layout.main, myTabhost.getTabContentView(), true); //from(this)從這個TabActivity 獲取LayoutInflater //R.layout.main 存放Tab 佈局 //經過TabHost 得到存放Tab 標籤頁內容的FrameLayout //是否將inflate 拴繫到根佈局元素上 myTabhost.setBackgroundColor(Color.argb(150, 22, 70, 150)); //設置一下TabHost 的顏色 ⑦ 接着,在TabHost 建立一個標籤,而後設置一下標題/圖標/標籤頁佈局 myTabhost .addTab(myTabhost.newTabSpec("TT")// 製造一個新的標籤TT .setIndicator("KK", getResources().getDrawable(R.drawable.ajjc)) // 設置一下顯示的標題爲KK,設置一下標籤圖標爲ajjc .setContent(R.id.widget_layout_red)); //設置一下該標籤頁的佈局內容爲R.id.widget_layout_red,這是FrameLayout 中的 一個子Layout ⑧ 標籤切換事件處理,setOnTabChangedListener myTabhost.setOnTabChangedListener(new OnTabChangeListener(){ @Override public void onTabChanged(String tabId) { // TODO Auto-generated method stub } });⑨ 各個標籤頁的動態MENU 先把在XML 中設計好的MENU 放到一個int 數組裏 private static final int myMenuResources[] = { R.menu.phonebook_menu, R.menu.addphone_menu, R.menu.chatting_menu, R.menu.userapp_menu }; 在setOnTabChangedListener()方法中根據標籤的切換狀況來設置myMenuSettingTag @Override public void onTabChanged(String tagString) { // TODO Auto-generated method stub if (tagString.equals("One")) { myMenuSettingTag = 1; } if (tagString.equals("Two")) { myMenuSettingTag = 2; } if (tagString.equals("Three")) { myMenuSettingTag = 3; } if (tagString.equals("Four")) { myMenuSettingTag = 4; } if (myMenu != null) { onCreateOptionsMenu(myMenu); } } 而後onCreateOptionsMenu(Menu menu) 方法中經過MenuInflater 過濾器動態加入MENU @Override public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub // Hold on to this myMenu = menu; myMenu.clear();//清空MENU 菜單 // Inflate the currently selected menu XML resource. MenuInflater inflater = getMenuInflater(); //從TabActivity 這裏獲取一個MENU 過濾器 switch (myMenuSettingTag) { case 1: inflater.inflate(myMenuResources[0], menu); //動態加入數組中對應的XML MENU 菜單 break; case 2: inflater.inflate(myMenuResources[1], menu); break;case 3: inflater.inflate(myMenuResources[2], menu); break; case 4: inflater.inflate(myMenuResources[3], menu); break; default: break; } return super.onCreateOptionsMenu(menu);
相關文章
相關標籤/搜索