### opdracht 1 ### <resources> ... <string name="app_name">Hallo Android</string> ... </resources>
Download hier het bestand.
### opdracht 2 ### <resources> ... <color name="colorPrimary">#000000</color> ... </resources>
Download hier het bestand.
### opdracht 3 ### ### strings.xml ### <resources> ... <string name="app_tekst">Hallo Telefoon</string> ... </resources> ### acitvity_main.xml ### <TextView ... android:text="@string/app_tekst" ... />
Download hier het bestand.
### opdracht 4 ### ### colors.xml ### <resources> ... <color name="colorTekst">#E91E63</color> ... </resources> ### styles.xml ### <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> ... <item name="android:textColor">@color/colorTekst</item> ... </style>
Download hier het bestand.