欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android Tab 控件詳解及實例

 更新時間:2017年03月25日 14:39:29   作者:feng1456  
這篇文章主要介紹了Android Tab 控件詳解及實例的相關(guān)資料,需要的朋友可以參考下

Android Tab 控件詳解及實例

在桌面應(yīng)用中Tab控件使用得非常普遍,那么我們經(jīng)常在Android中也見到以Tab進行布局的客戶端。那么Android中的Tab是如何使用的呢?

1.Activity

package com.wicresoft.activity; 
 
import com.wicresoft.myandroid.R; 
 
import android.app.TabActivity; 
import android.os.Bundle; 
import android.util.Log; 
import android.widget.TabHost; 
import android.widget.TabHost.OnTabChangeListener; 
 
@SuppressWarnings("deprecation") 
public class mainActivity extends TabActivity { 
  private TabHost tabhost; 
  @Override 
  protected void onCreate(Bundle savedInstanceState){ 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main_activity); 
    //從TabActivity上面獲取放置Tab的TabHost 
    tabhost = getTabHost(); 
    tabhost.addTab(tabhost 
         //創(chuàng)建新標(biāo)簽one 
        .newTabSpec("one") 
        //設(shè)置標(biāo)簽標(biāo)題 
        .setIndicator("紅色") 
        //設(shè)置該標(biāo)簽的布局內(nèi)容 
        .setContent(R.id.widget_layout_red)); 
    tabhost.addTab(tabhost 
        .newTabSpec("two") 
        .setIndicator("黃色") 
        .setContent(R.id.widget_layout_yellow)); 
    tabhost.addTab(tabhost 
        .newTabSpec("three") 
        .setIndicator("藍色") 
        .setContent(R.id.widget_layout_blue)); 
    tabhost.setOnTabChangedListener(listener); 
  } 
   
  private OnTabChangeListener listener = new OnTabChangeListener(){ 
    @Override 
    public void onTabChanged(String arg0) { 
      // TODO Auto-generated method stub 
      Log.i("TabChange", arg0); 
    } 
  }; 
} 

2.布局文件

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:id="@android:id/tabhost">
  
<LinearLayout 
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  
  <TabWidget 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@android:id/tabs">
  </TabWidget>
  
  <FrameLayout 
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:id="@android:id/tabcontent">
    <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_red"
      android:background="#ff0000"
      android:orientation="vertical">
    </LinearLayout>
    
     <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_yellow"
      android:background="#FCD209"
      android:orientation="vertical">
     </LinearLayout>
     <LinearLayout 
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:id="@+id/widget_layout_blue"
      android:background="#0000E3"
      android:orientation="vertical">
     </LinearLayout>
  </FrameLayout>
 </LinearLayout>
</TabHost>

3.Manifest文件

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.wicresoft.myandroid"
  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.wicresoft.activity.mainActivity"
      android:label="@string/app_name">
      <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
      </intent-filter>
    </activity>
  </application>

</manifest>

4.效果



感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

  • Android自定義View實現(xiàn)游戲搖桿鍵盤的方法示例

    Android自定義View實現(xiàn)游戲搖桿鍵盤的方法示例

    Android進階過程中有一個繞不開的話題——自定義View。最近在做項目中又遇到了,所以下面這篇文章主要給大家介紹了利用Android自定義View實現(xiàn)游戲搖桿鍵盤的相關(guān)資料,操作方式類似王者榮耀的搖桿操作,文中通過示例代碼介紹的非常詳細,需要的朋友們下面來一起看看吧。
    2017-07-07
  • 探討:android項目開發(fā) 統(tǒng)籌兼顧 需要考慮的因素

    探討:android項目開發(fā) 統(tǒng)籌兼顧 需要考慮的因素

    本篇文章是對基于android項目開發(fā) 統(tǒng)籌兼顧 需要考慮的因素進行了詳細的分析介紹,需要的朋友參考下
    2013-06-06
  • Android自定義UI手勢密碼改進版源碼下載

    Android自定義UI手勢密碼改進版源碼下載

    這篇文章主要介紹了Android自定義UI手勢密碼改進版,為大家提供了手勢密碼源碼下載,,具有一定的實用性,感興趣的小伙伴們可以參考一下
    2016-10-10
  • Android自定義RadioGroupX實現(xiàn)多行多列布局

    Android自定義RadioGroupX實現(xiàn)多行多列布局

    這篇文章主要為大家詳細介紹了Android自定義RadioGroupX實現(xiàn)多行多列布局,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2021-09-09
  • 讀取android根目錄下的文件或文件夾實例

    讀取android根目錄下的文件或文件夾實例

    本篇文章主要介紹了讀取android根目錄下的文件或文件夾,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
    2016-12-12
  • Android自定view畫圓效果

    Android自定view畫圓效果

    這篇文章主要為大家詳細介紹了Android自定view畫圓效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-10-10
  • Android中定時執(zhí)行任務(wù)的3種實現(xiàn)方法(推薦)

    Android中定時執(zhí)行任務(wù)的3種實現(xiàn)方法(推薦)

    下面小編就為大家?guī)硪黄狝ndroid中定時執(zhí)行任務(wù)的3種實現(xiàn)方法(推薦)。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2016-11-11
  • Android 自定View實現(xiàn)仿QQ運動步數(shù)圓弧及動畫效果

    Android 自定View實現(xiàn)仿QQ運動步數(shù)圓弧及動畫效果

    這篇文章主要介紹了Android自定義view實現(xiàn)高仿QQ運動步數(shù)圓弧及動畫效果的實例代碼,本文涉及到繪制圓弧需要具備的知識點,需要的朋友可以參考下
    2016-10-10
  • Android?Studio實現(xiàn)簡易計算器設(shè)計

    Android?Studio實現(xiàn)簡易計算器設(shè)計

    這篇文章主要為大家詳細介紹了Android?Studio實現(xiàn)簡易計算器設(shè)計,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-05-05
  • Android協(xié)程的7個重要知識點匯總

    Android協(xié)程的7個重要知識點匯總

    在現(xiàn)代Android應(yīng)用開發(fā)中,協(xié)程(Coroutine)已經(jīng)成為一種不可或缺的技術(shù),它不僅簡化了異步編程,還提供了許多強大的工具和功能,可以在高階場景中發(fā)揮出色的表現(xiàn),本文將深入探討Coroutine重要知識點,幫助開發(fā)者更好地利用Coroutine來構(gòu)建高效的Android應(yīng)用
    2023-09-09

最新評論