Getting Current Location on Android Using Kotlin
Have you ever wonder how to get a current location on Android programmatically? Hmm, the answer is so easy. You need to know how to use the fused location provider. Basically, it will give...
Have you ever wonder how to get a current location on Android programmatically? Hmm, the answer is so easy. You need to know how to use the fused location provider. Basically, it will give...
Android Shared Preferences is a powerful and efficient way to store data of your application inside the phone’s local storage. The data that is stored will stay persistent inside your Android device unless you...
Android LinearLayout is an essential layout to build a UI layout block for Android apps. Most of the time you will need to use this layout as your main layout when designing the UI....
It’s time for me to show you how to create an Android intro slider and splash screen. An Intro screen is a good way to tell users what your app is all about or...
Hi folks! Today I will share about Retrofit Android, how to get JSON data from REST API. Retrofit is one of REST API clients for Android development. This library helps to make development tasks...
Taking pictures or photos can’t get any easier. Well, what I am saying that it is super easy and simple. I will show you how to take photo from camera and gallery using Intent...
Hi again, Bottom Navigation Bar is another amazing part of Android development. When you need something like simple navigation for your app, the Android Bottom Navigation Bar is one of the choices. It is...
Today I want to share about how you can copy text to Clipboard programmatically and paste the text from the clipboard on Android. This tutorial will be on the Kotlin language since it is...
Whenever you need to show a custom message or alert on your app, then you need an Android custom AlertDialog. It is very easy to learn and implement! You want to show an alert...
Another cool component is the Android Time Picker for developers who want to input a time such as hour and minute. It does not hurt you a lot if you want to learn how...
Android Date Picker is one of the important components of Android development. If you need something like selecting a date to input, so you’re gonna need a Date Picker dialog. In this post, you’ll...
More