android+studio梅花线性布局代码
时间: 2024-03-06 11:45:43 浏览: 105
Android梅花布局示例
5星 · 资源好评率100%
Android Studio是一款用于开发Android应用程序的集成开发环境(IDE),而线性布局是一种常用的布局方式之一。下面是一个使用线性布局的示例代码:
```xml
<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: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>
```
上述代码创建了一个垂直方向的线性布局,其中包含一个TextView和一个Button。TextView用于显示文本"Hello, World!",Button用于触发点击事件。
阅读全文