📜  Android-hello world应用程序(1)

📅  最后修改于: 2023-12-03 14:59:16.801000             🧑  作者: Mango

Android - Hello World 应用程序

Android - Hello World 应用程序是很多新手程序员学习 Android 开发的第一个项目。本文将介绍如何创建一个简单的 Hello World 应用程序。

1. 创建新的项目

在 Android Studio 中创建新的项目,选择 Empty Activity。给项目命名,点击 Next。在下一步中,填写应用程序包名,为 Activity 命名,点击 Finish。现在我们已经成功创建了一个空白的应用程序。

2. 修改布局文件

打开 activity_main.xml 文件,该文件位于 res/layout 文件夹下。使用双击方式打开文件,进入 Android Studio 的 Design 模式,将 Text 中的内容改为“Hello World!”即可。如果需要调整字体大小、颜色等信息,可以使用属性编辑器。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 
    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:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>
3. 运行应用程序

点击 Android Studio 上方的绿色运行按钮,等待应用程序启动。在模拟器或者真机中,可以看到一个显示“Hello World”的应用程序窗口。

4. 总结

本文介绍了如何使用 Android Studio 创建一个 Hello World 应用程序,并涉及到如何修改布局文件和运行应用程序。Hello World 应用程序是 Android 上入门级别的项目,通过它可以更好地了解 Android 开发的基础知识,为以后的 Android 开发工作打好基础。

Happy Coding! 🚀