帮我写一段Android studio一个普通应用程序主界面布局代码
时间: 2023-04-07 20:01:40 浏览: 225
好的,以下是一个简单的 Android Studio 应用程序主界面布局代码:
```xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:textSize="24sp"
android:layout_centerInParent="true"/>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me!"
android:layout_below="@id/title"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
```
这个布局文件包含一个 TextView 和一个 Button,TextView 居中显示,Button 在 TextView 下方居中显示。你可以根据自己的需求进行修改和调整。
阅读全文