android 选项卡(TabHost)如何放置在屏幕的底部
更新时间:2013年01月07日 14:36:29 作者:
如何将TAB放置在屏幕的底端,有很多的新手都想实现这种效果,本文搜集整理了一些,感兴趣的朋友可以参考下哦
今天写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>
复制代码 代码如下:
<?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>
相关文章
Android系统联系人全特效实现(上)分组导航和挤压动画(附源码)
本文将为大家讲解下Android系统联系人全特效实现之分组导航和挤压动画,具体实现及源代码如下,感兴趣的朋友可以参考下哈,希望对大家学习有所帮助2013-06-06Recyclerview添加头布局和尾布局、item点击事件详解
这篇文章主要为大家详细介绍了Recyclerview添加头布局和尾布局、item点击事件的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-08-08Android TimePicker 直接输入的问题解决方案
这篇文章主要介绍了Android TimePicker 直接输入的问题解决方案的相关资料,需要的朋友可以参考下2017-04-04Android Studio中通过CMake使用NDK并编译自定义库和添加预编译库
这篇文章是基于Android Studio 3.01版本的,NDK是R16。本文重点给大家介绍Android Studio中通过CMake使用NDK并编译自定义库和添加预编译库的相关知识,感兴趣的朋友一起看看吧2018-01-01Android有效获取状态栏(StatusBar)高度的方法
这篇文章主要介绍了Android有效获取状态栏(StatusBar)高度的方法,涉及Android针对状态栏(StatusBar)属性操作的相关技巧,需要的朋友可以参考下2016-08-08Android编程实现类似天气预报图文字幕垂直滚动效果的方法
这篇文章主要介绍了Android编程实现类似天气预报图文字幕垂直滚动效果的方法,涉及Android基于布局及事件响应实现图文滚动效果的相关操作技巧,需要的朋友可以参考下2017-08-08
最新评论