android 选项卡(TabHost)如何放置在屏幕的底部
时间:2023-07-09 21:19:59
今天写Tab的时候由于TAB的跳转问题去查资料,倒反而发现更有趣的问题,就是如何将TAB放置在屏幕的底端。
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>
</TabHost>
标签:选项卡,TabHost,屏幕底部
0
投稿
猜你喜欢
Android:“万能”Activity重构篇
2023-09-19 07:41:05
Android Drawerlayout实现侧滑菜单效果
2022-10-31 19:39:23
C#7.0中新特性汇总
2023-06-24 18:29:13
Java中关于二叉树的概念以及搜索二叉树详解
2023-01-12 00:09:25
Android自定义view系列之99.99%实现QQ侧滑删除效果实例代码详解
2022-05-08 15:35:55
C#利用控件拖拽技术制作拼图游戏
2023-05-24 21:27:34
浅析12306售票算法(java版)
2023-11-16 10:27:12
C语言程序设计50例(经典收藏)
2023-07-10 08:33:19
Android studio 快速删除无用资源的方法
2022-10-06 20:53:42
将本地jar包安装进入maven仓库(实现方法)
2022-06-18 00:35:54
c# 对cookies(增、删、改、查)的操作方法
2023-08-10 06:24:48
Spring Boot之AOP配自定义注解的最佳实践过程
2023-01-27 17:41:02
深入理解Java中观察者模式与委托的对比
2023-10-30 18:00:03
mybatis @Alias注解在类上的使用方式(推荐)
2023-11-20 00:30:03
Android使用ViewPager实现图片滑动预览效果
2023-02-15 15:28:28
Android处理图像数据转换的各种方法
2023-07-10 10:58:50
C#基础教程之IComparable用法,实现List<T>.sort()排序
2023-11-03 07:07:46
C#实现类型的比较示例详解
2022-02-18 18:17:44
WinForm中KeyDown,KeyPress和KeyUp的顺序与区别解析
2023-06-30 22:34:36
聊聊java中引用数据类型有哪些
2022-01-10 11:59:10