我有一个TabHost / TabWidget的布局,如下所示:
蓝框是FrameLayout。我在FrameLayout中有一个RelativeLayout。 RelativeLayout位于fill_parent的宽度/高度,FrameLayout位于fill_parent宽度和445dp高度,因为这是从Parent底部到TabWidget底部的高度。
那么我怎样才能将FrameLayout设置为始终直到Tabs?(我需要调整大小以适应它所显示的任何DPI /屏幕大小)
xml:
<?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">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</TabWidget>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="445dp"
android:layout_gravity="bottom" >
<RelativeLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom" >
</RelativeLayout>
</FrameLayout>
</TabHost>
答案 0 :(得分:1)
这将有效....
android:layout_marginTop="63dp"
android:layout_height="fill_parent"