我需要将视图的宽度设置为屏幕宽度的 50%,然后将此视图水平居中,同时可能有 1 个或多个按钮可以出现在屏幕的左侧或右侧。
我正在使用相对布局,以便我可以放置一个带有权重的线性布局,以使我的 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>