TabHost组件可以在界面中存放多个选项卡,很多软件都使用了改组件进行设计。
一、基础知识
TabWidget : 该组件就是TabHost标签页中上部 或者 下部的按钮,可以点击按钮切换选项卡;
TabSpec : 代表了选项卡界面,添加一个TabSpec即可添加到TabHost中;
-- 创建选项卡 : newTabSpec(String tag),创建一个选项卡;
-- 添加选项卡 : addTab(tabSpec);
二、实例讲解
TabHost的基本使用,主要是layout的声明要使用特定的ID号,然后activity继承tabactivity即可。
main.xml:
<TabHost xmlns:androID="http://schemas.androID.com/apk/res/androID" xmlns:tools="http://schemas.androID.com/tools" androID:ID="@androID:ID/tabhost" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" tools:context=".Main" > <linearLayout androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" > <TabWidget androID:ID="@androID:ID/tabs" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" > </TabWidget> <FrameLayout androID:ID="@androID:ID/tabcontent" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" > <linearLayout androID:ID="@+ID/tab1" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:orIEntation="vertical" > <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:text="aa" /> </linearLayout> <linearLayout androID:ID="@+ID/tab2" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:orIEntation="vertical" > <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:text="bb" /> </linearLayout> </FrameLayout> </linearLayout></TabHost>
Main.java:
package com.app.main;import androID.app.tabactivity;import androID.os.Bundle;import androID.vIEw.VIEw;import androID.vIEw.VIEw.OnClickListener;import androID.Widget.TabHost;import androID.Widget.TabHost.OnTabchangelistener;import androID.Widget.TabHost.TabSpec;import androID.Widget.TabWidget;public class Main extends tabactivity { @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); final TabHost tabHost = this.getTabHost(); TabSpec tab1 = tabHost.newTabSpec("tab1").setIndicator("tab1") .setContent(R.ID.tab1); tabHost.addTab(tab1); TabSpec tab2 = tabHost.newTabSpec("tab2").setIndicator("tab2") .setContent(R.ID.tab2); tabHost.addTab(tab2); }}
实现效果:
其他:
当点击tabWidget的时候,若想注册事件监听器,可以使用:
1.调用
tabHost.setonTabChangedListener(new Tabchangelistener(){ public voID onTabChanged(String ID) { }});
这个传入的ID,就是tabWidget的indicator,这里是"tab1","tab2";
2.调用
tabWidget.getChildAt(0).setonClickListener(new OnClickListener(){});
以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Android组件TabHost实现页面中多个选项卡切换效果全部内容,希望文章能够帮你解决Android组件TabHost实现页面中多个选项卡切换效果所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)