What is JSON? Understanding JSON Syntax with Simple Examples

In the world of data interchange and web development, JSON (JavaScript Object Notation) is a fundamental format … Read more

How to check if Wi-Fi is connected on Android Programmatically ?

To check if your Android device is already connected to a Wi-Fi network, you can use the … Read more

How to check if password for WiFi network is correct in Android ?

The following sample code in android can be used to check if the Password entered to connect … Read more

How to Enable/Disable WiFi problematically in Android ?

Using “setWifiEnabled” API in Android, you can enable or disable Wi-Fi programmatically. Below an example of how … Read more

How to debug Fragments in Android ?

Debugging fragments in Android involves identifying and fixing issues or unexpected behavior within your fragment-based user interface … Read more

How to create Runnable Thread in Android JAVA ?

Runnable in android / JAVA is an interface which needs to be implemented if we want run … Read more

How to use Android Log API’s in Kotlin to print logs ?

Kotlin initializes the variables in different way than JAVA hence if you are too much used to … Read more

adb shell screencap ( Take Screenshot in Android using ADB Shell )

If you want to take screen capture of something happening on your phone screen and save it … Read more

Understanding Android Touch Event , onTouchEvent ( Motion Event )

When we just touched the touchscreen and printed the logs in application using “onTouchEvent” it printed following … Read more