我需要将视图的宽度设置为屏幕宽度的50%,然后将此视图水平居中,同时可能有一个或多个按钮,这些按钮可以显示在屏幕的左侧或右侧。
我正在使用相对布局,这样我就可以放置一个带有权重的线性布局,使我的50%居中,同时将任何按钮放在连接到RL左边或右边的LL顶部。但是这个布局缺少蓝色中间栏。如果我将中间视图layout_weight设置为1,我会得到3个相同大小的条。
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp">
<LinearLayout
android:id="@+id/stupid_android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#FF0000"
android:layout_weight="1" />
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#0000FF"
android:layout_weight="2" />
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#00FF00"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:17)
您应该将视图的宽度设置为0dip
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp">
<LinearLayout
android:id="@+id/stupid_android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#FF0000"
android:layout_weight="1" />
<View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#0000FF"
android:layout_weight="2" />
<View
android:layout_width="0dip"
android:layout_height="match_parent"
android:background="#00FF00"
android:layout_weight="1" />
</LinearLayout>
</RelativeLayout>
答案 1 :(得分:0)
使用新的百分比支持库。
compile 'com.android.support:percent:24.0.0'
示例:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.percent.PercentRelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp"
>
<View
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FF0000"
app:layout_widthPercent="33%" />
<View
android:layout_height="match_parent"
android:layout_weight="2"
android:background="#0000FF"
app:layout_marginLeftPercent="33%"
app:layout_widthPercent="33%" />
<View
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#00FF00"
app:layout_marginLeftPercent="66%"
app:layout_widthPercent="33%" />
</android.support.percent.PercentRelativeLayout>
</LinearLayout>
了解更多信息Android Doc
答案 2 :(得分:-2)
如果我理解正确,你需要这个:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="48dp">
<LinearLayout
android:id="@+id/stupid_android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#FF0000"
android:layout_weight="1" ></View>
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#0000FF"
android:layout_weight="1.5" ></View>
<View
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#00FF00"
android:layout_weight="1.5" ></View>
</LinearLayout>
</RelativeLayout>