我正在使用TAB主机,我可以通过标签切换5个活动,当我在单独的应用程序中运行活动独奏时,每个重量属性都可以正常工作。但是当我在TAB中运行它们时,主机权重属性不起作用。为什么会如此。如果我不得不将我当前的应用程序与标签主机中的1:2:3比例分开,我该怎么办?
仅仅为了测试目的,我在1个活动中创建了两个线性布局1:1比例,当我运行它们就好像在一个标签中热门重量不起作用而在一个简单的应用程序中它工作?怎么了。
xml 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="match_parent"
android:layout_height="fill_parent"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="center_horizontal"
>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@color/darkblue_bottombar"
android:paddingBottom="1sp"
android:gravity="center_horizontal"
android:paddingLeft="200sp"
android:paddingRight="200sp"></TabWidget>
</RelativeLayout>
</TabHost>
tab2 xml
<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".5"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/Dialog_done_grey"
android:padding="15dip"
android:text="CHECK4"
android:textSize="18dip" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight=".5"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/blue_header"
android:padding="15dip"
android:text="CHECK5"
android:textSize="18dip" />
</LinearLayout>
答案 0 :(得分:0)
在 将属性高度更改为fill_parent
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white"
/>