Do you want to underline a TextView in Android? In this post, you will learn how to underline a TextVew and also learn to change underline color. You…
Sometimes, we make our app using the code from youtube tutorials and blogs and may forget to change the package name at the start. Yes, this happens, most…
Having trouble with USB debugging??? Want to reduce the usage of USB?? In this post, we will show you two methods that help you to run the app…
In this example, you will learn how to open the calendar on button click in Android with an example. Here I use DatePickerDialog, not CalendarView. Beginners tend to…
In this tutorial, you will learn how to make Android TextView bold. There are 4 ways in this tutorial, you can easily learn, adapt the code and use…
In this post, you will learn how to convert Java class to Kotlin in Android Studio. Google announced Kotlin as an official language for Android Development. When comparing…
Do you want to make an Android webview browser? Don’t worry, I will help you to make a simple one. Just like below. Download Source Code – Kotlin…
Finally, Google has accepted Kotlin as the official language for Android app development. This doesn’t mean we have to stop making apps using JAVA. You can, but Kotlin…
Have you ever seen “touch again to exit” or any other white text in a black capsule shape as pop up in Android??? Those popup messages are toast.…
In this post, you will learn about the Android Support Library and How to add in your Android Studio project. In Android app development, support libraries have an…
In this post, you will learn how to perform an action using Button and onClick attribute in XML. It is simple and easy to understand. Before creating the…
In this post, you will learn how to create another activity in Android Studio. When you started the Android Development journey by creating Hello World or any other…
In this post, you will learn about AsyncTask with a simple Android AsyncTask example. At last, you can download it too. Contents Introduction What is AsyncTask in Android?…
Does your Android Studio takes a lot of time to build and run?? If you have a low-end pc, then this time increases. When I hit the run…
Do you want to know how setContentView() works in Android? Let’s start… Actually setContentView() is a method part of android.app.Activity class. It helps to set our content or…