How to make a Unit Converter Android App
A Unit Converter Android App is a mobile application designed to convert measurements or quantities from one unit to another. These apps are handy tools… Read More »How to make a Unit Converter Android App
Android Parent
A Unit Converter Android App is a mobile application designed to convert measurements or quantities from one unit to another. These apps are handy tools… Read More »How to make a Unit Converter Android App
A simple flashlight or torchlight Android app is a mobile application that utilizes the device’s camera flash (LED) to produce a bright light, simulating the… Read More »How to Build a Simple Flashlight Android App?
To make TextView scrollable on Android you need to use a android:scrollbars properties of your TextView in your layout’s XML file. Then use the below code in… Read More »Android Scrollable TextView | Vertical Using XML and Programmatically
To make a TextView clickable(hypertext link) in Android you can do it in value Strings file or calling setMovementMethod(). There are multiple scenarios and conditions.… Read More »How to make links in a TextView clickable HyperLink on Android Kotlin/Java
Changing the Android status bar color is very easy in Android Studio. Set color on android:colorPrimaryDark the attribute of the style you’re using for your app… Read More »Android status bar color change | android:colorPrimaryDark
To know about the URL loaded or not in WebView have to use the webViewClient onPageFinished() method. A WebView to have a WebViewClient to make… Read More »WebViewClient onPageFinished() | listen for a WebView finishing loading a URL
You can define the underlined text in an Android layout XML using a String Resouce XML file. In a string res file you have to use an… Read More »Android text underline XML layout | TextView Kotlin/Java
Do you want to make the corners of a button round in Android? In this tutorial, you will learn an easy way to achieve this in Android.… Read More »How to Android button rounded corners | Radius, ripple, corners, design?
Activity in the Android application development, you can do 2-way communication on starting a new Activity. A first Activity can get the result from another… Read More »Getting a Result from an Activity| Android startActivityForResult Example Kotlin
Saving a UI state in the android app is very important, UI state to remain the same, but the system destroys the activity. To improve… Read More »How to Save UI States | Android Activity State onSaveInstanceState Method – Kotlin