其他分享
首页 > 其他分享> > Android LinearLayout和RelativeLayout 详解

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"

标签:控件,layout,button1,RelativeLayout,Android,LinearLayout,android
来源: https://blog.csdn.net/weixin_42754390/article/details/122282734