美文网首页
安卓原生页面布局总结

安卓原生页面布局总结

作者: 全栈的猫南北 | 来源:发表于2022-06-27 22:20 被阅读0次

布局分为线性布局:LinearLayout和相对布局:RelativeLayout

线性布局:LinearLayout

常用属性

android:id 标识"@+id/"
android:layout margin 外边距
android:layout_padding  内边距
android:layout_width 宽match_parent匹配父控件
android:layout_height  高
android:orientation  方向 vertical
android:background 背景
android:layout_weight 权重
android:layout_gravity  对齐方式center

android:layout_weight="1"
android:layout_weight="2"
权重:把屏幕剩余部分分为1和2

相对布局:RelativeLayout

android:layout_toLeftOf 在谁的左边
android:layout_toRightOf 在谁的右边
android:layout_below  在谁的下边 android:layout_below="@+id/View"
android:layout_alignBottom 跟谁底部对齐true
android:layout_alignParentBottom 跟父控件底部对齐

相关文章

网友评论

      本文标题:安卓原生页面布局总结

      本文链接:https://www.haomeiwen.com/subject/eymovrtx.html