视图的边距和填充之间有什么区别?
视图的边距和填充之间有什么区别?
Answers:
为了帮助我记住填充的含义,我想起一件大外套,上面有很多厚的棉填充物。我在外套里,但是我和我的棉coat在一起。我们是一个单位。
但是要记住余量,我想到:“ 嘿,给我一些余量! ”这是我和您之间的空白。不要进入我的舒适区-我的边缘。
为了更加清楚,这是的填充和边距图片TextView
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="#c5e1b0"
android:textColor="#000000"
android:text="TextView margin only"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="#f6c0c0"
android:textColor="#000000"
android:text="TextView margin only"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#c5e1b0"
android:padding="10dp"
android:textColor="#000000"
android:text="TextView padding only"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#f6c0c0"
android:padding="10dp"
android:textColor="#000000"
android:text="TextView padding only"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="#c5e1b0"
android:textColor="#000000"
android:padding="10dp"
android:text="TextView padding and margin"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:background="#f6c0c0"
android:textColor="#000000"
android:padding="10dp"
android:text="TextView padding and margin"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#c5e1b0"
android:textColor="#000000"
android:text="TextView no padding no margin"
android:textSize="20sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#f6c0c0"
android:textColor="#000000"
android:text="TextView no padding no margin"
android:textSize="20sp" />
</LinearLayout>
填充是边框内部,边框和实际视图内容之间的空间。请注意,填充内容完全围绕内容:顶部,底部,右侧和左侧(可以是独立的)上都有填充。
保证金为边框外侧的空间,边框和其他元素旁边的这个观点之间。在图像中,边距是整个对象外部的灰色区域。请注意,就像填充一样,页边空白完全围绕内容:在顶部,底部,右侧和左侧都有页边空白。
一张图片说了1000多个字(摘自Margin Vs Padding-CSS Properties):
填充在视图内,边距在视图外。填充可用于所有视图。根据视图的不同,填充和边距之间可能没有视觉差异。
例如,对于按钮,特征按钮背景图像包括填充,但不包括边距。换句话说,增加更多的填充使按钮在外观上看起来更大,而增加更多的边距只会使按钮与下一个控件之间的间隙变宽。
TextView
另一方面,对于s,填充和边距的视觉效果是相同的。
边距是否可用取决于视图的容器,而不是视图本身。在LinearLayout
保证金方面,AbsoluteLayout
(现在考虑已作废)-否。
下图将让您了解填充和边距-
裕度是指元素外部的多余空间。填充是指元素内的多余空间。边距是控件周围的多余空间。填充是控件内部的额外空间。
很难看到空白和空白填充之间的区别,但是使用彩色填充可以很好地看到它。
用简单的话说:
padding改变了盒子的大小(有一些东西)。
边距改变了不同盒子之间的空间