欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

android 选项卡(TabHost)如何放置在屏幕的底部

程序员文章站 2023-12-14 08:19:58
今天写tab的时候由于tab的跳转问题去查资料,倒反而发现更有趣的问题,就是如何将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>

上一篇:

下一篇: