android布局属性之margin

Margin:

android:layout_margin:本元素离上下左右间的距离

 

android:layout_marginStart:本元素离开始的位置的距离

android:layout_marginEnd:本元素离结束位置的距离

 

android:layout_marginBottom

android:layout_marginTop

android:layout_marginLeft

android:layout_marginRight

eg:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_height="match_parent"
    android:layout_width="match_parent">
   
    <LinearLayout
        android:layout_width="800dp"
        android:layout_height="300dp"
        android:layout_margin="100dp"
        android:orientation="vertical"
        android:background="#ff0000" >      
       <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
       
        android:layout_marginTop="200dp"
        android:layout_marginBottom="50dp"
        android:layout_marginLeft="200dp"
        android:layout_marginRight="50dp"
        android:background="#00ff00"       
        />      
    </LinearLayout>
    <TextView
        android:layout_width="100dp"
        android:layout_height="100dp"
       
        android:layout_marginStart="-50dp"
        android:layout_marginEnd="50dp"     
        android:background="#0000ff"
       
        />
</LinearLayout>

android布局属性之margin_第1张图片

由于红色部分离边框的距离是100dp,所以蓝色的上边缘没有与红色底边缘对齐。

因为蓝色的start是-50,所有我们看到的宽只有50dp。

你可能感兴趣的:(android布局属性之margin)