How to Build a CRUD App With Kotlin and Android Studio
(© 2023 Alexander Huber, All Rights Reserved)
Contents
- 1 About this Tutorial Book
- 2 Creating the Tutorial App
- 3 Data Classes
- 4 DAO Classes
- 5 Global Utility Class
- 6 Database class and string.xml
- 7 Main Menu and Toolbar Menu
- 8 Layout, Themes, Navigation and activity_main.xml
- 9 Menu Item ”Genders”
-
10 Add Genders
- 10.1 BaseViewModel.kt
- 10.2 AddGenderViewModel.kt
- 10.3 string.xml (English)
- 10.4 divider.xml
- 10.5 themes.xml (Light-Mode)
- 10.6 text_input_name.xml
- 10.7 crud_buttons.xml
- 10.8 fragment_add_gender.xml
- 10.9 build.xml (App)
- 10.10 FormField.kt
- 10.11 FormFieldText.kt
- 10.12 Validation.kt
- 10.13 BaseFragment.kt
- 10.14 AddGenderFragment.kt
- 10.15 GendersListFragment.kt
- 10.16 nav_graph.xml
- 11 Update Genders
- 12 Menu Item ”Persons”
-
13 Add Persons
- 13.1 Spinnable.kt
- 13.2 Gender.kt
- 13.3 BaseViewModel.kt
- 13.4 AddPersonViewModel.kt
- 13.5 button_space.xml
- 13.6 string.xml (English)
- 13.7 themes.xml (Light-Mode)
- 13.8 text_input_date.xml
- 13.9 spinner_generic.xml
- 13.10 image_area.xml
- 13.11 fragment_add_person.xml
- 13.12 settings.gradle
- 13.13 build.xml (App)
- 13.14 Validation.kt
- 13.15 LambdaDatePicker.kt
- 13.16 BaseFragment.kt
- 13.17 AddPersonFragment.kt
- 13.18 PersonsListFragment.kt
- 13.19 nav_graph.xml
- 14 Update Persons
- 15 Tags
-
16 Preferences: Main User and Deactivated Items
- 16.1 GlobalAppStore.kt
- 16.2 Person.kt
- 16.3 UpdatePreferencesViewModel.kt
- 16.4 colors.xml
- 16.5 themes.xml (Light-Mode)
- 16.6 checkbox_generic.xml
- 16.7 string.xml (English)
- 16.8 fragment_update_preferences.xml
- 16.9 UpdatePreferencesFragment.kt
- 16.10 nav_graph.xml
- 16.11 MainActivity.kt
- 16.12 HomeViewModel.kt
- 16.13 fragment_home.xml
- 16.14 FragmentHome.kt
- 17 Searching
- 18 Menu Item ”Diary entries”
-
19 Add Diary Entries
- 19.1 AddDiaryEntryViewModel.kt
- 19.2 string.xml (English)
- 19.3 themes.xml (Light-Mode)
- 19.4 text_input_diary_text.xml
- 19.5 text_input_generic.xml.xml
- 19.6 dialog_select_tag.xml
- 19.7 fragment_add_diary_entry.xml
- 19.8 build.xml (App)
- 19.9 Validation.kt
- 19.10 BaseFragment.kt
- 19.11 AddDiaryEntryFragment.kt
- 19.12 DiaryEntriesListFragment.kt
- 19.13 nav_graph.xml
- 20 PDF Files
- 21 Update Diary Entries
- 22 Home Screen
- Bibliography