marging与padding区别
2018-08-19 本文已影响0人
世道无情
1. 概述
在开发中,在写xml布局文件时,一般会用到margin与padding,它们都是用于表示间距的,这篇文章主要记录下二者的使用场景;
2. 使用如下
1>:对于margin:如下图所示:给图片ImageView设置 android:layout_margin="@dimen/px100":表示ImageView距离父布局RelativeLayout的左边、右边、上边、下边 各50dp

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/rl_1"
android:background="@color/bg_hui"
android:layout_marginLeft="@dimen/px30"
android:layout_marginRight="@dimen/px30"
>
<ImageView
android:layout_width="@dimen/px120"
android:layout_height="@dimen/px120"
android:id="@+id/iv_commodity"
android:layout_marginTop="@dimen/px20"
android:layout_marginBottom="@dimen/px20"
android:src="@mipmap/test_1"
android:layout_margin="@dimen/px100"
/>
</RelativeLayout>
2>:对于padding:如下图所示:给父布局RelativeLayout设置 android:padding="@dimen/px40",表示 把父布局撑开20dp

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="@dimen/px40"
>
<Button
android:id="@+id/btn_pay"
android:layout_width="wrap_content"
android:layout_height="@dimen/px50"
android:layout_gravity="center_horizontal"
android:background="@drawable/bg_wait_pay2"
android:text="付款"
android:textColor="@color/bg_normal"
android:textSize="@dimen/text_28"
android:layout_alignParentRight="true"
/>
<Button
android:id="@+id/btn_cancel_order"
android:layout_width="wrap_content"
android:layout_height="@dimen/px50"
android:layout_gravity="center_horizontal"
android:background="@drawable/bg_wait_pay"
android:text="取消订单"
android:textColor="@color/app_name"
android:textSize="@dimen/text_28"
android:layout_toLeftOf="@id/btn_pay"
android:layout_marginRight="@dimen/px40"
/>
</RelativeLayout>