Merge pull request #5064 from jafzak/patch-2

Add android tutorial article
pull/5392/head
dsh 5 months ago committed by GitHub
commit 16a2a48a88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      src/data/roadmaps/android/content/101-the-fundamentals/105-hello-world-app.md

@ -1,3 +1,6 @@
# Create a basic Hello World App
The "Hello World" app is a simple project that you can build when you're getting started with Android development. It's often the first program that beginners learn to build in a new system. It's usually considered the simplest form of program that displays a message to the user - "Hello, World!" In Android, this involves creating a new project from the Android Studio and setting up the main activity. The main activity file is primarily written in Java or Kotlin where you can code for the display message, while the layout design view can be created in the XML file.
The "Hello World" app is a simple project that you can build when you're getting started with Android development. It's often the first program that beginners learn to build in a new system. It's usually considered the simplest form of program that displays a message to the user - "Hello, World!" In Android, this involves creating a new project from the Android Studio and setting up the main activity. The main activity file is primarily written in Java or Kotlin where you can code for the display message, while the layout design view can be created in the XML file.
Resources:
- [Create your first android app](https://developer.android.com/codelabs/basic-android-kotlin-compose-first-app)

Loading…
Cancel
Save