layout_marginTop,layout_marginBottom,layout_marginRight,layout_marginLeft是 RelativeLayout 中的四种属性。
layout_marginTop 指定该属性所在控件距上部最近控件的最小值;
layout_marginBottom 指定该属性所在控件距下部最近控件的最小值;
layout_marginLeft 指定该属性所在控件距左边最近控件的最小值;
layout_marginRight 指定该属性所在控件距右边最近控件的最小值。
layout_marginTop使用方法:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button android:id="@+id/project"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="项目"
android:layout_marginTop="50dp"/>
</RelativeLayout>