TabHost的使用方法

2021-06-04 20:40:28 字數 467 閱讀 3998

第一步:建立main.xml檔案

<?xml version="1.0" encoding="utf-8"?>

"android:id="@android:id/tabhost"

android:layout_width="fill_parent"

android:layout_height="fill_parent">

第二步驟:編輯mainactivity

package cn.hjw.tabwidget;

public class mainactivity extends tabactivity }

第三步驟:新增別的用的activity

package cn.hjw.tabwidget;

public class artistsactivity extends  activity }

注意:一定要在清單檔案中註冊所有的activity類

TabHost的使用方法

tabhost 是整個tab 的容器,包括兩部分,tabwidget 和framelayout tabwidget 就是每個 tab的標籤,framelayout 則是tab 內容。tabhost有兩種實現方式 一 繼承tabactivity 二 單純繼承activity,在 中新增 第一種 1 如...

TabHost的使用方法

tabhost的使用方法 方法一 繼承tabactivity 獲取系統提供的tabhost 用layoutinflater為其設定content 新增tab選項 具體 如下 tabhost th this.gettabhost layoutinflater li this.getlayoutinfl...

TabHost簡單使用示例

在android的開發中,經常需要實現頁面tab的功能,比較簡答的一種方式就是使用tabhost實現。顧名思義,tabhost即是包含若干個tab的乙個tab容器。那麼,當我們要使用tabhost實現乙個介面功能的時候,我們是如何開始的呢?布局檔案的填寫較為簡單,如下 使用中,需要注意的點是 tab...