最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

實(shí)例講解Android應(yīng)用開發(fā)中TabHost的使用要點(diǎn)

 更新時(shí)間:2016年04月15日 15:02:55   作者:無鴦  
這篇文章主要介紹了Android應(yīng)用開發(fā)中TabHost的使用要點(diǎn),文中以實(shí)例講解了TabHost與Tab的布局方法,需要的朋友可以參考下

Tab與TabHost:

2016415145730178.png (319×94)

這就是Tab,而盛放Tab的容器就是TabHost 。
如何實(shí)現(xiàn)??
每一個(gè)Tab還對(duì)應(yīng)了一個(gè)布局,這個(gè)就有點(diǎn)好玩了。一個(gè)Activity,對(duì)應(yīng)了多個(gè)功能布局。
新建一個(gè)Tab項(xiàng)目,注意,不要生成main Activity 。

2016415145821998.png (120×103)

注意IDE,這里不要選...
在包里面新建一個(gè)類MyTab,繼承于TabActivity。
其實(shí),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);
  }
}

在Manifest.xml文件中注冊(cè)一下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>

這時(shí)候,需要設(shè)計(jì)一下標(biāo)簽頁對(duì)應(yīng)的布局,一般采用FrameLayout作為根布局,每個(gè)標(biāo)簽頁面對(duì)應(yīng)一個(gè)子節(jié)點(diǎn)的Layout

<?xml version="1.0" encoding="utf-8"?>
<!-- 這里是根節(jié)點(diǎn)布局 -- >
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" android:layout_height="fill_parent">
 
<!-- 第一個(gè)Tab 對(duì)應(yīng)的布局 -- >
  <LinearLayout android:id="@+id/widget_layout_Blue"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    androidrientation="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>
<!-- 第二個(gè)Tab 對(duì)應(yīng)的布局 -- >
  <LinearLayout android:id="@+id/widget_layout_red"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    androidrientation="vertical" >
    <AnalogClock android:id="@+id/widget36"
      android:layout_width="wrap_content" android:layout_height="wrap_content">
    </AnalogClock>
  </LinearLayout>
<!-- 第三個(gè)Tab 對(duì)應(yīng)的布局 -- >
  <LinearLayout android:id="@+id/widget_layout_green"
    android:layout_width="fill_parent" android:layout_height="fill_parent"
    androidrientation="vertical">
    <RadioGroup android:id="@+id/widget43"
      android:layout_width="166px" android:layout_height="98px"
      androidrientation="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>

首先,應(yīng)該聲明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)從這個(gè)TabActivity獲取LayoutInflater
//R.layout.main 存放Tab布局
//通過TabHost獲得存放Tab標(biāo)簽頁內(nèi)容的FrameLayout
//是否將inflate 拴系到根布局元素上
myTabhost.setBackgroundColor(Color.argb(150, 22, 70, 150));
//設(shè)置一下TabHost的顏色

接著,在TabHost創(chuàng)建一個(gè)標(biāo)簽,然后設(shè)置一下標(biāo)題/圖標(biāo)/標(biāo)簽頁布局

myTabhost.addTab(myTabhost.newTabSpec("TT")// 制造一個(gè)新的標(biāo)簽TT
   .setIndicator("KK",getResources().getDrawable(R.drawable.ajjc))
            // 設(shè)置一下顯示的標(biāo)題為KK,設(shè)置一下標(biāo)簽圖標(biāo)為ajjc
            .setContent(R.id.widget_layout_red));
    //設(shè)置一下該標(biāo)簽頁的布局內(nèi)容為R.id.widget_layout_red,這是FrameLayout中的一個(gè)子Layout

標(biāo)簽切換事件處理,setOnTabChangedListener

myTabhost.setOnTabChangedListener(new OnTabChangeListener(){
      @Override
      public void onTabChanged(String tabId) {
        // TODO Auto-generated method stub
      }      
    });

各個(gè)標(biāo)簽頁的動(dòng)態(tài)MENU
先把在XML中設(shè)計(jì)好的MENU放到一個(gè)int數(shù)組里

private static final int myMenuResources[] = { R.menu.phonebook_menu,
      R.menu.addphone_menu, R.menu.chatting_menu, R.menu.userapp_menu };

在setOnTabChangedListener()方法中根據(jù)標(biāo)簽的切換情況來設(shè)置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過濾器動(dòng)態(tài)加入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這里獲取一個(gè)MENU過濾器
    switch (myMenuSettingTag) {
    case 1:
      inflater.inflate(myMenuResources[0], menu);
      //動(dòng)態(tài)加入數(shù)組中對(duì)應(yīng)的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);
  }

menu 布局

<?xml version="1.0" encoding="utf-8"?>
<menu
 xmlns:android="http://schemas.android.com/apk/res/android">
<group android:id="@+id/group_a"><item android:id="@+id/item_a" android:icon="@drawable/gimp" android:title="Gimp"></item>
</group>
</menu>

運(yùn)行效果

2016415150019730.png (320×480)

2016415150042317.png (320×480)

2016415150100038.png (320×480)

模仿微信導(dǎo)航實(shí)例:

2016415150122927.png (480×854)

<?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" > 
 
  <LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 
 
    <FrameLayout 
      android:id="@android:id/tabcontent" 
      android:layout_width="match_parent" 
      android:layout_height="0.0dip" 
      android:layout_weight="1.0" > 
    </FrameLayout> 
 
    <TabWidget 
      android:id="@android:id/tabs" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:visibility="gone" > 
    </TabWidget> 
 
    <RadioGroup 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_gravity="bottom" 
      android:background="@android:color/black" 
      android:orientation="horizontal" > 
 
      <RadioButton 
        android:id="@+id/talk" 
        style="@style/rbt_bottom" 
        android:drawableTop="@drawable/take_bottom" 
        android:text="@string/talk" /> 
 
      <RadioButton 
        android:id="@+id/address" 
        style="@style/rbt_bottom" 
        android:drawableTop="@drawable/adrress_bottom" 
        android:text="@string/address" /> 
 
      <RadioButton 
        android:id="@+id/find" 
        style="@style/rbt_bottom" 
        android:drawableTop="@drawable/find_bottom" 
        android:text="@string/find" /> 
 
      <RadioButton 
        android:id="@+id/me" 
        style="@style/rbt_bottom" 
        android:drawableTop="@drawable/me_bottom" 
        android:text="@string/me" /> 
    </RadioGroup> 
  </LinearLayout> 
 
</TabHost> 

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
 
  <item android:drawable="@drawable/n_address_l" android:state_checked="true" android:state_enabled="true"/> 
  <item android:drawable="@drawable/n_address_h"/> 
 
</selector> 

package com.android.xiong.bkclient; 
 
import android.app.TabActivity; 
import android.content.Intent; 
import android.os.Bundle; 
import android.widget.CompoundButton; 
import android.widget.CompoundButton.OnCheckedChangeListener; 
import android.widget.RadioButton; 
import android.widget.TabHost; 
 
@SuppressWarnings("deprecation") 
public class MainActivity extends TabActivity implements 
    OnCheckedChangeListener { 
 
  private TabHost tabHost; 
  private Intent addressIntent; 
  private Intent meIntent; 
  private Intent takeIntent; 
  private Intent findIntent; 
 
  private RadioButton findBt; 
  private RadioButton addressBt; 
  private RadioButton meBt; 
  private RadioButton takeBt; 
 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.tabhostmain); 
    addressIntent = new Intent(this, AddressActivity.class); 
    meIntent = new Intent(this, MeActivity.class); 
    takeIntent = new Intent(this, TakeActivity.class); 
    findIntent = new Intent(this, FindActivity.class); 
    findBt = (RadioButton) findViewById(R.id.find); 
    addressBt = (RadioButton) findViewById(R.id.address); 
    meBt = (RadioButton) findViewById(R.id.me); 
    takeBt = (RadioButton) findViewById(R.id.talk); 
    tabHost =getTabHost(); 
    tabHost.addTab(tabHost.newTabSpec("take").setIndicator("take") 
        .setContent(takeIntent)); 
    tabHost.addTab(tabHost.newTabSpec("address").setIndicator("address") 
        .setContent(addressIntent)); 
    tabHost.addTab(tabHost.newTabSpec("find").setIndicator("find") 
        .setContent(findIntent)); 
    tabHost.addTab(tabHost.newTabSpec("me").setIndicator("me") 
        .setContent(meIntent)); 
    findBt.setOnCheckedChangeListener(this); 
    meBt.setOnCheckedChangeListener(this); 
    takeBt.setOnCheckedChangeListener(this); 
    addressBt.setOnCheckedChangeListener(this); 
  } 
 
  @Override 
  public void onCheckedChanged(CompoundButton view, boolean ischeak) { 
    if (ischeak) { 
      switch (view.getId()) { 
      case R.id.talk: 
        tabHost.setCurrentTabByTag("take"); 
        break; 
      case R.id.find: 
        tabHost.setCurrentTabByTag("find"); 
        break; 
      case R.id.me: 
        tabHost.setCurrentTabByTag("me"); 
        break; 
      case R.id.address: 
        tabHost.setCurrentTabByTag("address"); 
        break; 
      default: 
        break; 
      } 
    } 
 
  } 
} 


<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  package="com.android.xiong.bkclient" 
  android:versionCode="1" 
  android:versionName="1.0" > 
 
  <uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="19" /> 
 
  <application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity android:name="com.android.xiong.bkclient.MainActivity"> 
      <intent-filter> 
        <action android:name="android.intent.action.MAIN" /> 
 
        <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
    </activity> 
    <activity android:name="com.android.xiong.bkclient.AddressActivity"></activity> 
    <activity android:name="com.android.xiong.bkclient.FindActivity"></activity> 
    <activity android:name="com.android.xiong.bkclient.MeActivity"></activity> 
    <activity android:name="com.android.xiong.bkclient.TakeActivity"></activity> 
  </application> 
 
</manifest> 

相關(guān)文章

  • Android編程視頻播放API之MediaPlayer用法示例

    Android編程視頻播放API之MediaPlayer用法示例

    這篇文章主要介紹了Android編程視頻播放API之MediaPlayer用法,結(jié)合實(shí)例形式分析了基于Android API實(shí)現(xiàn)視頻播放功能的多媒體文件讀取、判斷、事件響應(yīng)及流媒體播放等相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下
    2017-08-08
  • Android中的AppWidget入門教程

    Android中的AppWidget入門教程

    這篇文章主要介紹了Android中的AppWidget入門教程,本文起講解了如何創(chuàng)建一個(gè)簡(jiǎn)單的AppWidget、如何使得AppWidget與客戶端程序交互等內(nèi)容,需要的朋友可以參考下
    2015-03-03
  • Android實(shí)現(xiàn)記住用戶名和密碼功能

    Android實(shí)現(xiàn)記住用戶名和密碼功能

    登陸界面創(chuàng)建一個(gè)復(fù)選按鈕,通過按鈕選取來進(jìn)行事件處理。若按鈕選中記住賬號(hào)和密碼的信息,本文教大家如何使用Android實(shí)現(xiàn)記住用戶名和密碼功能,感興趣的小伙伴們可以參考一下
    2016-05-05
  • Android Handler 原理分析及實(shí)例代碼

    Android Handler 原理分析及實(shí)例代碼

    這篇文章主要介紹了Android Handler 原理分析及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下
    2017-02-02
  • Android?Settings?跳轉(zhuǎn)流程方法詳解

    Android?Settings?跳轉(zhuǎn)流程方法詳解

    這篇文章主要為大家介紹了Android?Settings跳轉(zhuǎn)流程方法示例,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2023-07-07
  • Android幀動(dòng)畫、補(bǔ)間動(dòng)畫、屬性動(dòng)畫用法詳解

    Android幀動(dòng)畫、補(bǔ)間動(dòng)畫、屬性動(dòng)畫用法詳解

    安卓的三種動(dòng)畫,幀動(dòng)畫,補(bǔ)間動(dòng)畫,屬性動(dòng)畫,大家了解多少,知道如何使用嗎?本文就為大家簡(jiǎn)單介紹Android幀動(dòng)畫、補(bǔ)間動(dòng)畫、屬性動(dòng)畫的使用方法,需要的朋友可以參考下
    2016-11-11
  • Android 應(yīng)用的安裝過程詳解

    Android 應(yīng)用的安裝過程詳解

    這篇文章主要介紹了Android 應(yīng)用的安裝過程詳解的相關(guān)資料,對(duì)應(yīng)Android應(yīng)用的安裝,我想大家應(yīng)該了解下的,需要的朋友可以參考下
    2016-11-11
  • Android中去掉標(biāo)題欄的幾種方法(三種)

    Android中去掉標(biāo)題欄的幾種方法(三種)

    本文給大家?guī)砹巳Nandroid去掉標(biāo)題欄的方法,都非常不錯(cuò),對(duì)android 去掉標(biāo)題欄的方法感興趣的朋友一起通過本文學(xué)習(xí)吧
    2016-08-08
  • Android編程獲取控件寬和高的方法總結(jié)分析

    Android編程獲取控件寬和高的方法總結(jié)分析

    這篇文章主要介紹了Android編程獲取控件寬和高的方法,結(jié)合實(shí)例形式對(duì)比總結(jié)并分析了Android控件屬性的相關(guān)操作技巧,需要的朋友可以參考下
    2016-01-01
  • Android使用MediaPlayer和TextureView實(shí)現(xiàn)視頻無縫切換

    Android使用MediaPlayer和TextureView實(shí)現(xiàn)視頻無縫切換

    這篇文章主要為大家詳細(xì)介紹了Android使用MediaPlayer和TextureView實(shí)現(xiàn)視頻無縫切換,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2019-10-10

最新評(píng)論

花莲市| 雅江县| 莱阳市| 井冈山市| 南皮县| 于都县| 广安市| 成都市| 红桥区| 沾化县| 武平县| 新津县| 六盘水市| 阿图什市| 马公市| 天等县| 桐城市| 庄浪县| 寻甸| 托克逊县| 韶山市| 高安市| 外汇| 南昌县| 呼玛县| 耒阳市| 上高县| 东光县| 沙坪坝区| 绍兴县| 康平县| 庄浪县| 桦南县| 罗平县| 呼伦贝尔市| 楚雄市| 铁岭市| 科技| 乌兰察布市| 三江| 招远市|