请在相对布局中加入两个Button,使Button1水平居中显示且距离父控件顶部260dp,使Button2显示在Button1的右边且距离Button1底部100dp
时间: 2024-02-18 21:00:44 浏览: 72
可以这样实现:
```xml
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"
android:layout_centerHorizontal="true"
android:layout_marginTop="260dp"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"
android:layout_below="@id/button1"
android:layout_alignStart="@id/button1"
android:layout_marginTop="100dp"/>
```
解释一下:
- `android:layout_centerHorizontal="true"`:使Button1水平居中显示;
- `android:layout_marginTop="260dp"`:使Button1距离父控件顶部260dp;
- `android:layout_below="@id/button1"`:使Button2显示在Button1的下面;
- `android:layout_alignStart="@id/button1"`:使Button2与Button1左对齐;
- `android:layout_marginTop="100dp"`:使Button2距离Button1底部100dp。
阅读全文