阅读量:6
LinearLayout布局常用的属性有:
android:orientation:设置布局方向,可选值为horizontal(水平布局)或vertical(垂直布局)。
android:layout_width:设置布局的宽度,可以使用具体数值(如100dp)或match_parent(填满父容器)等值。
android:layout_height:设置布局的高度,可以使用具体数值(如100dp)或match_parent等值。
android:layout_weight:设置布局的权重,用于控制布局在父容器中的分配比例。
android:gravity:设置布局中子元素的对齐方式,可选值包括top、bottom、left、right、center等。
android:padding:设置布局的内边距,用于控制子元素与父容器之间的间距。
android:paddingTop、android:paddingBottom、android:paddingLeft、android:paddingRight:分别设置布局的上、下、左、右内边距。
android:layout_margin:设置布局的外边距,用于控制布局与其他控件之间的间距。
android:layout_marginTop、android:layout_marginBottom、android:layout_marginLeft、android:layout_marginRight:分别设置布局的上、下、左、右外边距。