Android中的padding和margin的區別
阿新 • • 發佈:2018-04-01
區別 you content and bsp schema out ring http
在Android的布局中,常常有人將padding和margin搞混,他們其實不一樣的,padding是該控件的內部距離。
magin是該控件與其他控件之間的距離。例如
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_blue_light"
android:orientation="vertical" >
<TextView
android:padding="10dp"
android:layout_margin="10dp"
android:background="@android:color/holo_green_light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/test"/>
</LinearLayout>
得到的布局如下:
Android中的padding和margin的區別