margin和padding 的区别
经常会看到这样的布局android:Layout_marginTop="-1.0dip",比较迷惑。查了下资料,有篇文章讲的不错,拿来一起分享!就拿Layout_marginTop和PaddingTop为例。 Layout_marginTop是从当前设定的控件的头部,开始向上移动,直到碰到上一个控件/父容器的顶部,所经过的距离。为什么这边要用“或”呢,因为在不同的Layout的效
·
经常会看到这样的布局android:Layout_marginTop="-1.0dip",比较迷惑。查了下资料,有篇文章讲的不错,拿来一起分享!
就拿Layout_marginTop和PaddingTop为例。
Layout_marginTop是从当前设定的控件的头部,开始向上移动,直到碰到上一个控件/父容器的顶部,所经过的距离。为什么这边要用“或”呢,因为在不同的Layout的效果是不一样的。在LinearLayout中,已经为内容控件规定了是按顺序排列的,所以Layout_marginTop的距离是指离上一个控件的底部的距离(垂直线性布局),但是在 RelativeLayout中,控件可以选择性堆叠在一起,所以,在RelativeLayout中的控件之间没有位置上的关系的话,那当前控件的 Layout_marginTop就是指到父容器顶部的距离。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:paddingTop="50dp" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button2"
android:layout_marginTop="20dp"/>
</RelativeLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:layout_marginTop="20dp"
android:orientation="vertical">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button3"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="button4"
android:layout_marginTop="20dp"/>
</LinearLayout>
</LinearLayout>
示例图:
就拿Layout_marginTop和PaddingTop为例。
当父容器设置了paddingTop,子元素又设置了Layout_marginTop了的话,那两者的距离就是两个值的相加了。
Layout_marginTop那一段可能说的有点绕,发点代码上来,大家试试就能理解了。
<?xml version="1.0" encoding="UTF-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
</LinearLayout>
示例图:
更多推荐
已为社区贡献1条内容
所有评论(0)