关于layoutmargintop的信息

http://www.itjxue.com  2023-01-30 10:59  来源:未知  点击次数: 

Android中margin和padding的区别

Android中 padding和margin的简单地理解:margin为外边距,padding为内边距。

1.padding的常用属性:

android:paddingTop

android:paddingBottom

android:paddingLeft

android:paddingRight

2.margin的常用属性:

android:layout_marginTop

android:layout_marginBottom

android:layout_marginLeft

android:layout_marginRight

怎样使用android:layout_marginTop,离某元素上边缘的距离,这里怎样确定是里那个元素的距离

距离上方的距离,如果上方有组建就是指该组件,你的组建就会在你上面那个组建的下面,你应该用这个属性:android:layout_alignTop="@id/某个组件",这样你的组建就在这个组件的上面了,然后再距离这个多少距离就好了

动态设置 android:layout_marginTop 怎么设置?

LinearLayout.LayoutParams layoutParam = new LinearLayout.LayoutParams( LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT); layoutParam.setMargins(10, 20, 10, 0);代码中,把这个 layoutParam 给控件应该就可以了

安卓笔记——layout的属性

相对于兄弟元素

android:layout_below="@id/aaa":在指定View的下方

android:layout_above="@id/xxx":在指定View的上方

android:layout_toLeftOf="@id/bbb":在指定View的左边

android:layout_toRightOf="@id/cccc":在指定View的右边相对于兄弟元素

android:layout_below="@id/aaa":在指定View的下方

android:layout_above="@id/xxx":在指定View的上方

android:layout_toLeftOf="@id/bbb":在指定View的左边

android:layout_toRightOf="@id/cccc":在指定View的右边

相对于父元素

android:layout_alignParentLeft="true":在父元素内左边

android:layout_alignParentRight="true":在父元素内右边

android:layout_alignParentTop="true":在父元素内顶部

android:layout_alignParentBottom="true":在父元素内底部

对齐方式

android:layout_centerInParent="true":居中布局

android:layout_centerVertical="true":水平居中布局

android:layout_centerHorizontal="true":垂直居中布局

android:layout_alignTop="@id/xxx":与指定View的上边界一致

android:layout_alignBottom="@id/xxx":与指定View下边界一致

android:layout_alignLeft="@id/xxx":与指定View的左边界一致

android:layout_alignRight="@id/xxx":与指定View的右边界一致

间隔

android:layout_marginBottom=""; 离某元素底边缘的距离

android:layout_marginLeft=""; 离某元素左边缘的距离

android:layout_marginRight ="";离某元素右边缘的距离

android:layout_marginTop=""; 离某元素上边缘的距离

android:layout_paddingBottom=""; 离父元素底边缘的距离

android:layout_paddingLeft=""; 离父元素左边缘的距离

android:layout_paddingRight ="";离父元素右边缘的距离

android:layout_paddingTop=""; 离父元素上边缘的距离

margin 与padding 区别

padding是站在父view的角度,是自己的内容与其父控件的边之间的距离。

margin则是站在自己的角度描述问题,自己与旁边的某个组件的距离

android中设置分隔线几种方法

方法一也是我们常用的方法,可以在按钮间添加作为分割线的View,设定好View的宽度高度和颜色值后插入按钮的布局间。

View的样式如下:

View

android:layout_height="fill_parent"

android:layout_width="1dp"

android:background="#90909090"

android:layout_marginBottom="5dp"

android:layout_marginTop="5dp"

/

相应的布局如下:

LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:adjustViewBounds="true"

android:orientation="horizontal"

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="Yes"

android:layout_weight="1"

android:id="@+id/button1"

android:textColor="#00b0e4" /

View android:layout_height="fill_parent"

android:layout_width="1px"

android:background="#90909090"

android:layout_marginBottom="5dp"

android:layout_marginTop="5dp"

android:id="@+id/separator1" /

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="No"

android:layout_weight="1"

android:id="@+id/button2"

android:textColor="#00b0e4" /

View android:layout_height="fill_parent"

android:layout_width="1px"

android:background="#90909090"

android:layout_marginBottom="5dp"

android:layout_marginTop="5dp"

android:id="@+id/separator2" /

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="Neutral"

android:layout_weight="1"

android:id="@+id/button3"

android:textColor="#00b0e4" //LinearLayout

方法二

通过LinearLayout指定的divider的属性来插入分隔符,类似于Listview的效果。这种方法的好处在于缩减布局代码量,同时在button数量未知的情况下能更方便的进行显示。但是这种方法只适用API版本11以上的机型。

使用方法也很简单,先创建分隔线的样式文件

?xml version="1.0" encoding="utf-8"?shape xmlns:android=""

size android:width="1dp" /

solid android:color="#90909090" //shape

再在布局文件中引用

LinearLayout

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:adjustViewBounds="true"

android:divider="@drawable/separator"

android:showDividers="middle"

android:orientation="horizontal"

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="Yes"

android:layout_weight="1"

android:id="@+id/button1"

android:textColor="#00b0e4" /

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="No"

android:layout_weight="1"

android:id="@+id/button2"

android:textColor="#00b0e4" /

Button

android:layout_width="fill_parent"

android:layout_height="wrap_content"

style="?android:attr/buttonBarButtonStyle"

android:text="Neutral"

android:layout_weight="1"

android:id="@+id/button3"

android:textColor="#00b0e4" //LinearLayout

最主要的代码如下

android:divider="@drawable/separator"

android:showDividers="middle"

当然分隔线的样式也可以用图片来替代,这就看项目的需求了。

android:padding和android:margin的区别

padding表示的是内边距,而margin表示外边距!

TextView

android:id="@+id/textView1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="#669900"

android:text="第一个textview" /

TextView

android:id="@+id/textView2"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginTop="10dp"

android:background="#229911"

android:text="第二个textview" /

TextView

android:id="@+id/textView3"

android:layout_width="wrap_content"

android:padding="10dp"

android:background="#aa1100"

android:layout_height="wrap_content"

android:text="第三个textview" /

先说margin:

第二个textview设置了margin_top,所以他就距离上一个textview有了一个距离;

第三个textview没有设置margin_top的值,所以就紧贴着第二个textview;

再说padding:

1.前两个textview没有设置padding,所以内容就紧挨着控件的边框,而第三个设置了10dp的padding,所以就内容就距离各个边框各10dp的距离,而整个控件就被撑大了!

2.同样,padding也可以设置单独距离某一面的距离,padding_left就是距离左边的内边距!

(责任编辑:IT教学网)

更多

推荐Fireworks教程文章