垂直布局有哪几种 分别列举代码展示
时间: 2024-01-16 16:05:37 浏览: 91
在Android中,垂直布局有以下几种方式:
1. LinearLayout
LinearLayout是最基本的布局,它可以设置方向为垂直或水平。在垂直方向下,子View按照从上到下的顺序依次排列。以下是一个简单的LinearLayout示例,方向为垂直:
```xml
<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="Hello World!"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"/>
</LinearLayout>
```
2. RelativeLayout
RelativeLayout是相对布局,子View可以根据其他View的位置进行定位。在垂直方向下,子View也是按照从上到下的顺序依次排列。以下是一个简单的RelativeLayout示例:
```xml
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textview"
android:text="Click Me"/>
</RelativeLayout>
```
3. ConstraintLayout
ConstraintLayout是约束布局,可以通过设置约束关系来确定子View之间的位置。在垂直方向下,子View也是按照从上到下的顺序依次排列。以下是一个简单的ConstraintLayout示例:
```xml
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me"
app:layout_constraintTop_toBottomOf="@+id/textview"
app:layout_constraintStart_toStartOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
```
以上是三种常用的垂直布局方式,在实际开发中可以根据需求来选择适合的布局方式。
阅读全文