我在水平布局中有3个按钮,可以填满整个屏幕。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="1" />
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="2"/>
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="3"/>
我的两个问题是:
如何在不修改宽度的情况下将右键固定在屏幕的右边缘?
如何在不改变宽度的情况下,将第2号按钮填入按钮1和3之间的空白区域?
答案 0 :(得分:2)
使用layout_weight应该完成工作,视图的权重是视图将填充的剩余空间的比例。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="1" />
<Button
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:text="2"/>
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:text="3"/>
</LinearLayout>
答案 1 :(得分:0)
我认为使用相对布局将是最佳解决方案,就像这样。
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_toLeftOf="@+id/button3"
android:alignParentLeft=”true”>
<Button
android:layout_width="0dp"
android:layout_height="50dp"
android:text="1"
android:layout_weight="1"/>
<Button 2
android:layout_width="0dp"
android:layout_height="50dp"
android:text="2"
android:layout_weight="1"/>
</LinearLayout>
<Button 3
android:id=”@+id/button3”
android:layout_width="100dp"
android:layout_height="50dp"
android:text="3"
android:alignParentRight=”true”/>
</RelativeLayout>
答案 2 :(得分:0)
尝试相对布局......
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="fill_parent"
android:id="@+id/relative"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/bt1"
android:layout_width="60dp"
android:layout_alignParentLeft="true"
android:layout_height="50dp"
android:text="1" />
<Button
android:id="@+id/bt2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_toRightOf="@+id/bt1"
android:layout_toLeftOf="@+id/bt3"
android:text="2" />
<Button
android:id="@+id/bt3"
android:layout_width="60dp"
android:layout_height="50dp"
android:layout_alignParentRight="true"
android:text="3" />
答案 3 :(得分:0)
我希望这会对你有所帮助:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:baselineAligned="false"
android:weightSum="0.6"
android:orientation="horizontal">
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.2" >
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:text="1" />
</RelativeLayout>
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.2" >
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:text="2" />
</RelativeLayout>
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="0dp"
android:layout_weight="0.2" >
<Button
android:layout_width="100dp"
android:layout_height="50dp"
android:layout_centerInParent="true"
android:text="3" />
</RelativeLayout>
</LinearLayout>