安卓布局
时间: 2023-07-01 20:26:50 浏览: 83
安卓布局实例
安卓布局是指在安卓开发中,将不同的视图组件按照一定的方式排列在屏幕上的过程。安卓布局支持多种布局方式,比如线性布局、相对布局、表格布局等。
以下是一个简单的线性布局示例:
```
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!" />
</LinearLayout>
```
在这个布局中,我们使用了一个垂直的线性布局,其中包含了一个文本视图和一个按钮。文本视图和按钮都是使用 wrap_content 的方式设置了宽度和高度,这样它们的大小就会根据内容自动调整。你也可以使用其他的布局方式,比如相对布局和表格布局,具体可以根据实际需求来选择。
阅读全文