Android LinearLayout和RelativeLayout 详解

两者的共有属性:
控件间距:
1.android:layout_marginLeft  
2.android:paddingLeft

控件显示位置:
1.Android:gravity
2.android:layout_gravity

仅RelativeLayout有效地属性:
Android:layout_alignParentLeft="true"  //在布局的左边
Android:layout_toRightOf="@id/button1" //在控件button1的右边,不仅仅是紧靠着
Android:layout_alignTop="@id/button1"  //和控件button1上对齐
Android:layout_centerHorizontal="true" //水平居中

仅LinearLayout中有效:
Android:layout_weight="1"
上一篇:Android FlexboxLayout布局属性详解,最新手淘Android高级面试题及答案


下一篇:Android记录3--ExpandableListView使用+获取SIM卡状态信息