From ade864821cd39204f225aa86a93d087c6c844ffc Mon Sep 17 00:00:00 2001 From: pelibby16 <pelibby16@earlham.edu> Date: Thu, 14 Nov 2024 15:12:04 -0500 Subject: [PATCH] slight layout change --- topical-units/env-android/ANATOMY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/topical-units/env-android/ANATOMY.md b/topical-units/env-android/ANATOMY.md index f2ce465..e772cc5 100644 --- a/topical-units/env-android/ANATOMY.md +++ b/topical-units/env-android/ANATOMY.md @@ -8,16 +8,16 @@ Keep in mind that for the deliverables specified on the main README.md of this m If you are still feeling lost, please ask quetsions! ## Breakdown of a Sample Project -- **manifests/** +### **manifests/** - **AndroidManifest.xml** - Essential information about your app and how it is built. More info [Here](https://developer.android.com/guide/topics/manifest/manifest-intro). -- **java/** +### **java/** - **com.example.cs266/** - `MainActivity` - This Java file contains the code being run when the app is launched from the homescreen. It should have an "onCreate" method that will set the view to an XML layout from the **layout/** directory. - **com.example.cs266/ (androidTest)** - `ExampleInstrumentedTest` - This Java file contains unittest code that will be executed on an Android device. - **com.example.cs266/ (test)** - `ExampleUnitTest` - This Java file contains unittest code that will be executed on the host machine running Android Studio. -- **res/** +### **res/** - **drawable/** - `ic_launcher_background.xml` - `ic_launcher_foreground.xml` -- GitLab