diff --git a/docs/documentation/android/appSetup.md b/docs/documentation/android/appSetup.md index f19693d..16835af 100644 --- a/docs/documentation/android/appSetup.md +++ b/docs/documentation/android/appSetup.md @@ -23,9 +23,13 @@ public class MainActivity extends AppCompatActivity { } } ``` +With setContentView you can set the layout file that you made earlier. +``` java + setContentView(R.layout.activity_main); +``` ### Manifest -For the app to be able to build you need to add the activity to the manifest file. You can do this by adding this to the manifest file. +For the app to be able to build you need to add the activity class to the manifest file. ```xml ``` -The class name that is ran first is defined in the first line of the class. \ No newline at end of file +In this instance MainActivity is the first class that is ran. \ No newline at end of file