如何设置格式中 RelativeLayout 到中心对齐的按钮
1个回答
展开全部
假设你想要两个 Button s 以 50%的屏幕上,你可以把他们放 LinearLayout 和给他们每人相同 weight 。喜欢的东西
<LinearLayout
...
>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
...
>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询