Validations in Android
Validating EditText input in Android is a common task to ensure that the user enters the correct type of data. This can include checking for empty fields, validating email addresses,…
Validating EditText input in Android is a common task to ensure that the user enters the correct type of data. This can include checking for empty fields, validating email addresses,…
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…
Android Date Time picker are used a lot in android apps. In this tutorial we’ll demonstrate the use of a Date Picker and Timer Picker Dialog in our android application. These components are used…
activity_main.xml MainActivity.Java build.gradle
activity_main.xml MainActivity.Java build.gradle
activity_main.xml MainActivity.Java build.gradle
activity_main.xml MainActivity.java build.gradle
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…
A type-safe HTTP client for Android and Java Introduction Retrofit turns your HTTP API into a Java interface. The Retrofit class generates an implementation of the GitHubService interface. Each Call from the created GitHubService can make a synchronous or asynchronous…