Fragment Life Cycle
In Android, fragments are a fundamental part of the user interface and provide a way to manage the layout and behavior of individual components or portions of a user interface…
In Android, fragments are a fundamental part of the user interface and provide a way to manage the layout and behavior of individual components or portions of a user interface…
API: https://reqres.in/api/users?page=2 Method: GET Resposnse: { “page”: 2, “per_page”: 6, “total”: 12, “total_pages”: 2, “data”: [ { “id”: 7, “email”: “michael.lawson@reqres.in”, “first_name”: “Michael”, “last_name”: “Lawson”, “avatar”: “https://reqres.in/img/faces/7-image.jpg” },], “support”: {…
activity_main.xml MainActivity.kt Homepage Activity.kt activity_home_page.xml
activity_main.xml MainActivity.kt
activity_main.xml MainActivity.kt
Creating a splash screen in an Android app involves designing a screen that is displayed briefly when the app is launched, providing a visual transition before the main content appears.…
In Android, runtime permissions refer to the permissions that an app must request from the user while the app is running in order to access sensitive data or perform certain…
Alert Dialog is a window that pops up on the screen. They generally show some information and ask for a user action. There are three core components that build an…
Retrofit is the class through which your API interfaces are turned into callable objects. By default, Retrofit will give you sane defaults for your platform but it allows for customization. CONVERTERS…
API Declaration Annotations on the interface methods and its parameters indicate how a request will be handled. REQUEST METHOD Every method must have an HTTP annotation that provides the request…