在Android中創(chuàng)建垂直布局可以使用LinearLayout或者ConstraintLayout。以下是使用LinearLayout創(chuàng)建垂直布局的示例代碼:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button" />
</LinearLayout>
在上面的示例中,我們創(chuàng)建了一個垂直方向的LinearLayout,然后在其中添加了一個TextView、另一個TextView和一個Button,它們會按照垂直方向依次排列。LinearLayout的orientation屬性設置為"vertical"表示垂直布局。
除了LinearLayout,你也可以使用ConstraintLayout來創(chuàng)建垂直布局。以下是使用ConstraintLayout創(chuàng)建垂直布局的示例代碼:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 1"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView 2"
app:layout_constraintTop_toBottomOf="@id/textView1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintTop_toBottomOf="@id/textView2"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
在上面的示例中,我們創(chuàng)建了一個垂直方向的ConstraintLayout,然后使用ConstraintLayout中的約束屬性將TextView和Button依次垂直排列。這種方式更加靈活,可以更精確地控制視圖的位置和大小。