https://github.com/tanuiniko/basic_android_app
Android Concepts and To-Do Application in Kotlin.
https://github.com/tanuiniko/basic_android_app
android kotlin lottie-animation todoapp
Last synced: 2 months ago
JSON representation
Android Concepts and To-Do Application in Kotlin.
- Host: GitHub
- URL: https://github.com/tanuiniko/basic_android_app
- Owner: tanuiniko
- Created: 2023-07-27T01:33:22.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-06T14:07:26.000Z (almost 3 years ago)
- Last Synced: 2025-01-17T03:14:34.040Z (over 1 year ago)
- Topics: android, kotlin, lottie-animation, todoapp
- Language: Kotlin
- Homepage:
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Basic_Android_App
Kotlin || Android
Activities and Fragments:
Activities and Fragments are fundamental building blocks in Android app development.
Activities represent single screens with a user interface, and
Fragments are reusable components that can be combined within activities to create a multi-pane user interface.
Official Android documentation on Activities:
https://developer.android.com/guide/components/activities
Official Android documentation on Fragments:
https://developer.android.com/guide/fragments
Shared Preferences:
Shared Preferences allow you to store and retrieve small amounts of data as key-value pairs.
It is commonly used for storing app settings or user preferences.
Official Android documentation on Shared Preferences:
https://developer.android.com/training/data-storage/shared-preferences
RecyclerView:
RecyclerView is a more flexible and efficient replacement for ListView.
It is used to display large datasets in a scrollable list while recycling views that are no longer visible to optimize memory usage.
Official Android documentation on RecyclerView:
https://developer.android.com/guide/topics/ui/layout/recyclerview