android studio用线性布局写一个页面的代码
时间: 2023-06-01 17:01:29 浏览: 144
以下是一个简单的示例代码,使用线性布局创建一个包含两个按钮和一个文本视图的页面:
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button1"
android:text="Button 1"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<Button
android:id="@+id/button2"
android:text="Button 2"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/textView"
android:text="Hello World!"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
```
在这个示例中,我们使用了一个垂直方向的线性布局。第一个按钮和第二个按钮都占据整个宽度,而文本视图只占据所需的宽度。每个视图都有一个唯一的ID,以便在代码中引用它们。
阅读全文