安卓relative layout怎么将button控件居中
时间: 2023-12-10 15:39:02 浏览: 86
CSS 将两个button按钮垂直+水平居中
你可以使用`android:layout_centerInParent="true"`属性将Button控件居中。示例代码如下:
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="My Button" />
</RelativeLayout>
```
在这个示例中,`android:layout_centerInParent="true"`属性将Button控件居中在RelativeLayout中。
阅读全文