在父布局中拉伸两个布局
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在父布局中拉伸两个布局相关的知识,希望对你有一定的参考价值。
我试图实现两个嵌套相对布局占用相等的空间并且用于填充整个屏幕宽度。所有父布局都在fillparent的宽度上设置。 Eclipse中的图形视图看起来很好,但我的HTC不同意 - 它将它们粘合在一起(我很好),但它也将它们移到左边。我希望他们伸展。
<LinearLayout
android:id="@+id/footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageButton
android:id="@+id/button_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:src="@drawable/button_1_active" >
</ImageButton>
<TextView
android:id="@+id/TextView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/partners_info"
android:textColor="@color/white"
android:textStyle="bold" >
</TextView>
</RelativeLayout>
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageButton
android:id="@+id/button_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:src="@drawable/button_2_inactive" >
</ImageButton>
<TextView
android:id="@+id/TextView02"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/partners_map"
android:textColor="@color/white"
android:textStyle="bold" >
</TextView>
</RelativeLayout>
</LinearLayout>
答案
对于两个ImageButton
尝试将layout_width
属性设置为fill_parent
然后还添加:
android:scaleType="fitXY"
另一答案
要使用相等的空间来获得它们,您必须将layout_weight
设置为相等的数字。
另一答案
使用此layout_weight = 1。在两个RelativeLayout中
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
>
以上是关于在父布局中拉伸两个布局的主要内容,如果未能解决你的问题,请参考以下文章