博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android TabHost小结(转)
阅读量:6360 次
发布时间:2019-06-23

本文共 2810 字,大约阅读时间需要 9 分钟。

TabHost是整个Tab的容器,包括两部分,TabWidget和FrameLayout。TabWidget就是每个tab的标签,FrameLayout则是tab内容。

1、如果我们使用extends TabAcitivty,如同ListActivity,TabHost必须设置为@android:id/tabhost

2、TabWidget必须设置android:id为@android:id/tabs 
3、FrameLayout需要设置android:id为@android:id/tabcontent 
4、参考这儿:x">http://blog.csdn.net/flowingflying/archive/2011/04/06/6304289.aspx

先自定义一个xml文件: 

Java代码  
<?xml version="1.0" encoding="utf-8"?>  
<TabHost xmlns:android=""  
    android:id="@android:id/tabhost"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent">  
    <LinearLayout  
        android:orientation="vertical"  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent">  
    <FrameLayout  
        android:id="@android:id/tabcontent"  
        android:layout_width="fill_parent"  
        android:layout_height="fill_parent"  
         android:layout_weight="1.0"  
        android:paddingBottom="53px"/>  
    <TabWidget  
        android:id="@android:id/tabs"  
        android:layout_alignParentBottom="true"  
        android:layout_width="fill_parent"  
        android:layout_height="50px"   
        android:visibility="gone"  
        android:layout_weight="0.0"/>  
        <RadioGroup  
            android:gravity="center_vertical"  
            android:orientation="horizontal"  
            android:id="@+id/main_radio"  
            android:background="@drawable/radiogroup_background"  
            android:layout_width="fill_parent"  
            android:layout_height="50dip"  
            android:layout_gravity="bottom">  
            <RadioButton  
                android:id="@+id/main_index_button"  
                android:layout_marginTop="1.0dip"  
                android:layout_marginRight="5dip"  
                android:text="@string/main_name"  
                android:drawableTop="@drawable/unistall"  
                  
                android:background="@drawable/radio_bg"/>  
            <RadioButton  
                android:id="@+id/main_running_button"  
                android:layout_marginTop="1.0dip"  
                android:layout_marginRight="5dip"  
                android:text="@string/run_manager_name"  
                android:drawableTop="@drawable/unistall"  
                  
                android:background="@drawable/radio_bg"/>  
            <RadioButton  
                android:id="@+id/main_uninstall_button"  
                android:layout_marginTop="1.0dip"  
                android:text="@string/uninstall_manager_name"  
                android:drawableTop="@drawable/unistall"  
                  
                android:background="@drawable/radio_bg"/>  
        </RadioGroup>  
    </LinearLayout>  
</TabHost> 

为了让tabHost显示在下方,要将RadioGroup的layout_gravity设置为bottom,再将FrameLayout的layout_weight设置为1,这样就可以将RadioGroup撑到最下方。里面定义了样式文件。

接下来就是在activity中初始化并添加tabhost: 

Java代码  
tabHost = (TabHost) findViewById(android.R.id.tabhost);  
        tabHost.addTab(Constant.tabHost.newTabSpec("Main")  
                .setIndicator(getString(R.string.main_name),null)  
                .setContent(new Intent(this, Main.class)));  
        tabHost.addTab(Constant.tabHost.newTabSpec("RunManager")  
                .setIndicator(getString(R.string.run_manager_name),null)  
                .setContent(new Intent(this, RunManager.class)));  
        tabHost.addTab(Constant.tabHost.newTabSpec("UninstallManager")  
                .setIndicator(getString(R.string.uninstall_manager_name),null)  
                .setContent(new Intent(this, UninstallManager.class))); 

初始化每个RadioButton并为其添加setOnCheck

转载于:https://www.cnblogs.com/zwenwen/archive/2012/02/10/2345313.html

你可能感兴趣的文章
端口扫描 1
查看>>
os.path官方文档(附翻译)
查看>>
延迟添加队列
查看>>
javascript学习(1)——[基础回顾]变量、声明、数据类型、类型转换
查看>>
javascript学习(6)——[基础回顾]继承/聚合
查看>>
身份证号码的正则校验+升级版
查看>>
【C++ STL 优先队列priority_queue】
查看>>
js.面向对象
查看>>
第八次作业—— 缺陷管理(含缺陷管理工具的配置实验)
查看>>
15 个 Android 通用流行框架大全
查看>>
通过点击LI,显示对应的DIV并隐藏其他DIV
查看>>
FeiQ项目
查看>>
跟随我在oracle学习php(19)
查看>>
怎么在Ubuntu上替换ESC键
查看>>
Java定时任务Timer、TimerTask与ScheduledThreadPoolExecutor详解
查看>>
5.Appium 安卓自动化(UIAutomator)
查看>>
222
查看>>
MDS
查看>>
I.MX6 Ethernet MAC (ENET) MAC Address hacking
查看>>
Unsupported major.minor version 51.0解决办法
查看>>