2025.3.12
设计布局
在 res/layout 目录下找到 activity_main.xml 文件,这是主 Activity 的布局文件。你可以使用 XML 代码手动编写布局,也可以使用可视化编辑器来设计界面。例如,以下是一个简单的线性布局示例:
xml
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, World!"
android:textSize="24sp" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click Me" />

浙公网安备 33010602011771号