//实际不显示 作为一个正中心的“标记”
<View android:id="@+id/help"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_centerHorizontal="true"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignRight="@id/help" //右边界与“标记”对其
android:layout_alignParentLeft="true" // 与 父容器左边界对其
android:text="Left"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/help"
android:layout_alignParentRight="true"
android:text="Right"/>
Andriod之RelativeLayout 平分
最新推荐文章于 2021-05-31 11:39:32 发布
本文详细介绍了在Android中如何使用RelativeLayout实现子视图平分屏幕的方法,包括XML布局代码示例和关键属性解析,帮助开发者更好地理解和运用RelativeLayout进行界面设计。
摘要由CSDN通过智能技术生成