我正在制作tabactivity。
我想在tabcontent(framelayout)下面显示我的tabwidget。
我是通过将tabwiget选项卡属性设置为
来完成的android:gravity="bottom"
但是framelayout无法与这些标签对齐。
即标签显示在屏幕底部并与framelayout重叠
怎么做?如果设置一个高度值到framelayout它没有针对android的所有屏幕进行优化。我能做什么?任何的想法???
答案 0 :(得分:4)
Tab-Activity
背后的基本概念如下
TabHost
是标签式窗口视图的容器。
此对象包含两个子项:用户单击以选择特定选项卡的一组选项卡标签,以及显示该页面内容的FrameLayout对象。
通常使用此容器对象控制单个元素,而不是在子元素本身上设置值。
TabWidget
会显示表示父级标签集中每个页面的标签标签列表。此小部件的容器对象是TabHost。
当用户选择一个选项卡时,该对象向容器TabHost发送一条消息,告诉切换显示页面。容器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:id="@+id/linearLayout1"
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="fill_parent"
android:layout_weight="1" >
</FrameLayout>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="-3dip"
android:layout_weight="0" >
</TabWidget>
</LinearLayout>
</TabHost>
答案 1 :(得分:3)
Android的例子来救援!
http://developer.android.com/resources/tutorials/views/hello-tabwidget.html
只需在res / layout / main.xml中交换tabcontent和tabs:
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
答案 2 :(得分:3)
或者只使用自定义的: http://code.google.com/p/androidtabs/
它允许底部的标签
答案 3 :(得分:3)
请检查以下链接
有两种方法可以在标签活动的底部显示标签。
1)使用相对布局 2)使用Layout_weight属性
http://justkumar.blogspot.com/2011/09/tabs-at-bottom-of-tabactivity-by.html
答案 4 :(得分:0)
检查
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabhost">
<LinearLayout android:id="@+id/LinearLayout01"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
<TabWidget
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:layout_gravity="bottom"
android:id="@android:id/tabs">
</TabWidget>
</FrameLayout>
</LinearLayout>
答案 5 :(得分:0)
这是底部标签的代码
<TabWidget
android:layout_width="fill_parent"
android:layout_height="60dp"
android:layout_gravity="bottom"
android:background="#0000"
android:id="@android:id/tabs"
/>
"android:layout_gravity="bottom"