Sqlite Example in Kotlin
activity_main.xml MainActivity.kt Dbhelper.kt activity_data.xml DeatilsActivity.kt custom.xml
Retrofit Using Form Data
Registration API Url: http://androindian.com/test/Register.php Request: Form Data Keys are username, email, password activity_main.xml MainActivity.java RetroInterface.java RegResponse.Java androidManifest.xml Add below lines in build gradle
Services Example in Android with Kotlin
A Service is an app component that can handle long-running operations in the background, and it does not provide a user interface. Another application component can start a service, and…
How to Write a Scope of Work with Example
What Is a Scope of Work (SOW)? A scope of work document is an agreement on the work youโre going to accomplish on the project.ย A scope of work in project…
For Each Loop(Enhanced for loop)
This loop is introduced in java 1.5 version and it designed for accessing the elements from arrays (collection). It is also called as enhanced for loop. Syntax: for(declaration:arrayname){ statements; }…
Transfer Statements
Break: Break is a transfer statement which can be used either inside switch statement or inside a loop. Note: When we are specifying the break statement in a loop we…
Nested Loop
If we specify a loop inside another loop then it is called as nested loop. Any loop can be specified inside any other loop any number of times. Program: Program