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:分別設置布局的上、下、左、右外邊距。