<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="机房管理" android:textSize="80dp" android:layout_gravity="center_horizontal" /> <Button android:id="@+id/btn_show_dialog" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Show Dialog" /> </LinearLayout>
时间: 2023-12-05 15:47:52 浏览: 154
这是一个基本的Android布局文件,使用了线性布局(LinearLayout)来垂直排列两个视图:一个TextView和一个Button。以下是每个元素的注释:
```
<?xml version="1.0" encoding="utf-8"?>
<!-- 声明XML版本和编码方式 -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" // 宽度设置为与父视图相同
android:layout_height="match_parent" // 高度设置为与父视图相同
tools:context=".MainActivity"> // 声明此布局所处的活动
<TextView
android:layout_width="wrap_content" // 宽度设置为自适应
android:layout_height="wrap_content" // 高度设置为自适应
android:text="机房管理" // 显示的文本内容
android:textSize="80dp" // 字体大小
android:layout_gravity="center_horizontal" // 在水平方向上居中对齐
/>
<Button
android:id="@+id/btn_show_dialog" // 按钮的唯一标识符
android:layout_width="wrap_content" // 宽度设置为自适应
android:layout_height="wrap_content" // 高度设置为自适应
android:text="Show Dialog" // 按钮上显示的文本内容
/>
</LinearLayout>
```
阅读全文