下面是乙個小例項
layout介面**:
xml version="1.0"encoding="utf-8"?><
tabhostxmlns:android=""android:id="
@android:id/tabhost"
android:layout_width="match_parent"android:layout_height="wrap_content">
<
linearlayoutandroid:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical">
<
framelayoutandroid:id="@android:id/tabcontent"android:layout_width="wrap_content"android:layout_height="wrap_content">
framelayout>
<
tabwidgetandroid:id="@android:id/tabs"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"/>
linearlayout>
tabhost>
activity**
importimportandroid.content.intent;importandroid.os.bundle;
importandroid.support.annotation.nullable;
importandroid.widget.tabhost;
/*** created by administrator on 2018/3/27.
*///顯示選項卡元件的activity繼承tabactivity
對於每個選項卡中內容,可以在tabhost介面中通過設定元件來實現,也可以如上所示在其他activity中實現,通過intent進行跳轉
Android控制項之TabHost
android實現tab檢視有兩種方法 一種是在布局頁面中定義標籤,另一種就是繼承tabactivity.相對於第一種,第二種實現起來比較簡單。這裡就只介紹一下第二種方式。階段一 布局 xml檔案 階段二 讓mainactivity繼承tabactivity,具體 如下 package com.lk...
Android學習筆記 TabHost選項卡使用
在android應用中,經常會用到tabhost選項卡,這裡借花獻佛,把apidemo例子中的使用方法列舉出來,常用的方法有三種 1.從乙個layout id建立各個tab頁 public class tabs1 extends tabactivity 2.動態建立乙個view來做為tab頁的內容 ...
Android之TabHost的幾種使用方法
1,activity要繼承tabactivity,使用layoutinflater方式來初始化布局檔案。main.xml 2,同樣繼承tabactivity,但是選項卡的內容則是跳轉到不同的activity。mian.xml 注意 tabhost中的id,tabwidget的id以及framelay...