<RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:paddingLeft="50dp" > <Button android:id="@+id/btn_data" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="编辑资料" android:layout_marginTop="10dp" android:layout_alignParentLeft="true" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="返回主页" android:layout_marginTop="10dp" android:layout_alignParentRight="true" /> </RelativeLayout>怎么让第二个按钮让左移动50dp
时间: 2024-02-27 20:57:46 浏览: 95
Android Layout样式布局
可以在第二个按钮的属性中加入 `android:layout_marginLeft="50dp"`,这样第二个按钮就会向左移动50dp,代码如下:
```
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="返回主页"
android:layout_marginTop="10dp"
android:layout_alignParentRight="true"
android:layout_marginLeft="50dp" />
```
阅读全文