Start a Service at Boot Time in Android App Using Kotlin

Azhar
Updated on 26-May-2020 06:42:30

2K+ Views

This example demonstrates how to start a Service at Boot Time in an Android App using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Create a new kotlin class and add the following code in RunServiceOnBoot.ktimport android.app.Service import android.content.Intent import android.os.Handler import android.os.IBinder import android.util.Log import android.widget.Toast class RunServiceOnBoot : Service() {    private val TAG = "MyService"    private lateinit var handler: Handler    private lateinit ... Read More

Check If Android EditText Is Empty in Kotlin

Azhar
Updated on 26-May-2020 06:36:16

2K+ Views

This example demonstrates how to Check if Android EditText is empty in Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.ktimport android.os.Bundle import android.text.TextUtils import android.widget.Button import android.widget.EditText import android.widget.Toast import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    lateinit var editText: EditText    lateinit var button: Button    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)   ... Read More

Get Free Size of Internal & External Memory in Android App Using Kotlin

Azhar
Updated on 26-May-2020 06:31:24

377 Views

This example demonstrates how to get free size of internal/external memory in Android App using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.ktimport android.os.Bundle import android.os.Environment import android.os.StatFs import android.widget.TextView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    lateinit var textView: TextView    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = ... Read More

Set Ringtone in Android from Activity using Kotlin

Azhar
Updated on 26-May-2020 06:27:26

1K+ Views

This example demonstrates how to set the ringtone in Android from Android activity using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.             Step 3 − Add the following code to src/MainActivity.ktimport android.content.Intent import android.media.RingtoneManager import android.net.Uri import android.os.Bundle import android.widget.Button import android.widget.TextView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    lateinit var btn: Button    lateinit var txtView: TextView    override fun onCreate(savedInstanceState: Bundle?) {       ... Read More

Set Android Toast Duration Longer than Toast Length using Kotlin

Azhar
Updated on 26-May-2020 06:20:20

412 Views

This example demonstrates how to set Android Toast duration longer than Toast.LENGTH_LONG using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2  − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.ktimport android.os.Bundle import android.os.CountDownTimer import android.view.View import android.widget.Toast import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    private lateinit var mToastToShow: Toast    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp" ... Read More

Convert Base64 String to Bitmap Image in Android App using Kotlin

Azhar
Updated on 26-May-2020 06:15:06

2K+ Views

This example demonstrates how to convert a Base64 string into a BitMap image in Android App using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.         Step 3 − Add the following code to src/MainActivity.ktimport android.graphics.Bitmap import android.graphics.BitmapFactory import android.os.Bundle import android.util.Base64 import android.widget.ImageView import androidx.appcompat.app.AppCompatActivity import java.io.ByteArrayOutputStream class MainActivity : AppCompatActivity() {    lateinit var imageView: ImageView    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       ... Read More

Get Width and Height of an Android Widget ImageView in Kotlin

Azhar
Updated on 26-May-2020 06:10:05

739 Views

This example demonstrates how to get the width and height of an android.widget.ImageView in Kotlin.Step 1 − Create a new project in Android Studio, go to File ? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.             Step 3 − Add the following code to src/MainActivity.ktimport android.os.Bundle import android.widget.Button import android.widget.ImageView import android.widget.TextView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    lateinit var imageView: ImageView    lateinit var textView: TextView    lateinit var button: Button    override fun onCreate(savedInstanceState: Bundle?) {   ... Read More

Set Absolute Position of a View in Android Using Kotlin

Azhar
Updated on 26-May-2020 06:05:59

758 Views

This example demonstrates how to set the absolute position of a view in Android using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml. Step 3 − Add the following code to src/MainActivity.ktimport android.os.Bundle import android.widget.ImageView import android.widget.RelativeLayout import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       val relativeLayout: RelativeLayout = findViewById(R.id.relativeLayout)       val imageView = ImageView(this)     ... Read More

Disable Home and Other System Buttons in Android Using Kotlin

Azhar
Updated on 26-May-2020 06:00:41

718 Views

This example demonstrates how to disable Home and other system buttons in Android using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.Example            Step 3 − Add the following code to src/MainActivity.ktExampleimport android.os.Bundle import android.view.View import androidx.appcompat.app.AppCompatActivity import java.util.* class MainActivity : AppCompatActivity() {    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp"    }    override fun onWindowFocusChanged(hasFocus: ... Read More

Check RAM Usage of Android App Using Kotlin

Azhar
Updated on 23-May-2020 14:29:21

666 Views

This example demonstrates how to create a smooth image rotation in Android using Kotlin.Step 1 − Create a new project in Android Studio, go to File? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.Example         Step 3 − Add the following code to src/MainActivity.ktExampleimport android.app.ActivityManager import android.content.Context import android.os.Bundle import android.widget.TextView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    private lateinit var textView: TextView    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp" ... Read More

Advertisements