This video shows the steps to set Minimum SDK Version and Target SDK Version of your Android App. These parameters can be set in Gradle file (App level) of the project in Android Studio. If anything is changed in the Gradle file, then it should be synced again in the…
Tag: level
How to make your own custom keyboard (OS system level) for all the Apps of your Android device?
In this video it shows steps to create your own custom keyboard for Android device. The keyboard shown in this demo is system level keyboard and will work across any App of your Android device. It makes an entry at the system level and can be configured to be used…
Difference between finish() and finishAndRemoveTask() in Android App code.
In this video it shows the difference between the two APIs in Android – finish() vs finishAndRemoveTask(). finish() is basically to minimize the App’s view so that the user cannot see the App’s layout anymore. It is similar to pressing back button from App’s home page to go back to…
How to detect Ambient Light (Bright/Dark or Day/Night) and set the layout background accordingly in your Android App?
This video shows simple steps to create an Android App in which you detect or check the ambient light using the in-built LIGHT sensors of the phone. This sensor returns the value of the ambient light in lux (illuminance) SI units. To demonstrate the Application, it uses a customizable threshold…