Android中的padding和margin的区别
Posted 纯水小胖子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中的padding和margin的区别相关的知识,希望对你有一定的参考价值。
在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的区别的主要内容,如果未能解决你的问题,请参考以下文章
Android 设置Padding和Margin(动态/静态)
Android之android:padding和android:layout_margin的区别