在Android中,可以使用XML來設置LinearLayout布局。以下是一個示例:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 1"/>
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button 2"/>
</LinearLayout>
在這個示例中,我們創建了一個垂直方向的LinearLayout布局,并在其中包含了兩個Button。可以通過設置android:orientation屬性來指定LinearLayout的方向(vertical或horizontal),通過設置android:layout_width和android:layout_height屬性來確定布局的寬度和高度。通過設置子元素的android:layout_width和android:layout_height屬性來確定子元素的尺寸。