Kotlin vs Java or From Java To Kotlin Part 1
Kotlin vs Java syntax In this article, you will find Kotlin vs java code syntax. Kotlin is a newly launched language and every wants to know… Read More »Kotlin vs Java or From Java To Kotlin Part 1
Kotlin vs Java syntax In this article, you will find Kotlin vs java code syntax. Kotlin is a newly launched language and every wants to know… Read More »Kotlin vs Java or From Java To Kotlin Part 1
RecyclerView is a UI (user interface) component of the Android app. With it, you can show a list of items in Horizontal, Vertical, grid, and segregated… Read More »Create a custom List with RecyclerView using CardView
Sometimes while working with double and floats, we need to round them to specific decimal points for calculation. For example, stores round final price to… Read More »How to round double or float values to 2 decimal points
Kotlin is now an official language on Android. Everyone wants to start the android app in kotlin because it’s Modern, Expressive, safe, and less code.… Read More »Kotlin Android basic fundamental codes
Android services are the most favorite and important interview questions for the Android developer (2-5 years experienced). Here we are covering the most important and… Read More »Android services Interview Questions & Answer
Android BroadcastReceiver is the main component of android application development. It’s work similar Publish-Subscriber design pattern. For example action.AIRPLNE_MODE, action.BATTERY_LOW, this is some system called broadcasts. We… Read More »Android BroadcastReceiver and Receive system Broadcast example in Kotlin
Kotlin is now the official language of the Android application. We can convert our existing Android code (or application) to kotlin. It’s important to upgrade… Read More »Build Your First Android App in Kotlin | Tutorial in Android Studio
Snackbar Android is introduced in Android material design. Its works the same as the Toast widget to show short-time Message or Feedback. But Snackbar also provides control… Read More »Snackbar Android widget example
Android fragments are the main component in android development, it’s added fragment component in Android 3.0 (API level 11), primarily to support more dynamic and… Read More »Creating and Using Android Fragments dynamically
Android application life cycle does not completely control its application lifecycle, It has its own Linux process. Android device has limited memory so this process… Read More »How to Manage Android Application Life Cycle