Andrid第一课

        相对布局是指按着控件之间的相对位置来进行布局。相对布局是Android布局中常用的一种,主要用到的标签有:RelativeLayout;主要用到的设置有android:id、android:layout_below、android:layout_alignParentRight和android:layout_toLeftOf。

1、android:gravity设置布局容器内子控件的对齐方式

2、android:ignoreGravity="id"设置布局管理器内哪个控件不受gravity属性的影响

3、RelativeLayout子元素的特有属性:LayoutParams

A、第一组:指兄弟控件之间的相对位置。该组属性的值是另一个控件的id。

[if !supportLists]1.[endif]layout_toRightOf该控件在哪个控件的右侧

[if !supportLists]2.[endif]layout_toLeftOf该控件在哪个控件的左侧

[if !supportLists]3.[endif]layout_above该控件在哪个控件的上侧

[if !supportLists]4.[endif]layout_below该控件在哪个控件的下侧

B、第二组:指兄弟控件之间的对齐关系。该组属性的值是另一个控件的id。

[if !supportLists]1.[endif]layout_alignRight该控件与哪个控件的右对齐

[if !supportLists]2.[endif]layout_alignLeft该控件与哪个控件的左对齐

[if !supportLists]3.[endif]layout_alignTop该控件与哪个控件的顶对齐

[if !supportLists]4.[endif]layout_alignBottom该控件与哪个控件的底对齐

C、第三组:指控件与父布局之间的对齐关系。该组属性的值是true或者false。

[if !supportLists]1.[endif]layout_alignParentRight该控件与父布局控件的右对齐吗?

[if !supportLists]2.[endif]layout_alignParentLeft该控件与父布局控件的左对齐吗?

[if !supportLists]3.[endif]layout_alignParentTop该控件与父布局控件的顶端对齐吗?

[if !supportLists]4.[endif]layout_alignParentBottom该控件与父布局控件的底部对齐吗?

[if !supportLists]5.[endif]layout_centerInParent该控件位于父布局控件的中心位置吗?

[if !supportLists]6.[endif]layout_centerVertical该控件位于父布局控件的垂直中心位置吗?

[if !supportLists]7.[endif]layout_centerHorizontal该控件位于父布局控件的水平中心位置吗?

         线性布局也是Android布局中常用的一种,线性布局控制其中的控件或组件横向或纵向排列。线性布局布局中,每一行或每一列只能放一个控件。并且线性布局不会换行。当控件排列到窗体边缘,后面的控件就被隐藏,而不会显示出来。主要用到的标签有:LinearLayou;主要用到的设置:

1.android:orientation定义布局内控件或组件的排列方式,可选项:vertical、horizontal。

2.android:layout_weight设置控件的权重。即各控件在水平或者垂直方向上平均分配。

3.android:gravity该属性用来控制该View的内容物的位置。

4.ndroid:layout_gravity 该属性用于设置控件相对于容器的对齐方式。

你可能感兴趣的:(Andrid第一课)