Android Encode URL in Kotlin In Kotlin, you can use the URLEncoder class to encode a URL string so that it can be safely transmitted over the internet. The URLEncoder class is part of the Needone 2 Feb 2023 · 1 min read
Android Difference between activity and requireActivity() in Kotlin activity property In the Android framework, the Activity class represents an app's UI and provides an interface for the app to interact with the system. The activity property in a Needone 24 Jan 2023 · 2 min read
Android Start and Suspend a Coroutine in Kotlin Kotlin Coroutines Table Content 1, Introduction to Coroutine in Kotlin 2, Non-blocking in Kotlin Coroutines 3, Start and Suspend a Coroutine in Kotlin (This article) With the previous articles (Introduction Needone 21 Jan 2023 · 2 min read
Android Non-blocking in Kotlin Coroutines Kotlin Coroutines Table Content 1, Introduction to Coroutine in Kotlin 2, Non-blocking in Kotlin Coroutines (This article) 3, Start and Suspend a Coroutine in Kotlin (incoming this week) From the Needone 19 Jan 2023 · 2 min read
Kotlin Introduction to Coroutine in Kotlin A Coroutine is a lightweight thread of execution that can be suspended and resumed later. There are already many articles or topics covering this but this post is different, it Needone 17 Jan 2023 · 3 min read
Kotlin How to make a custom view in Kotlin To create a custom view in Kotlin, you can create a new subclass of View and override the onDraw method to draw the view's content. Then, you can add any Needone 12 Jan 2023 · 1 min read
Android Bottom Sheet Dialog implementation in kotlin To create a bottom sheet dialog in Kotlin, you can use the BottomSheetDialog class from the Android Support Library, which is a built-in package. Here's an example of how you Needone 18 Dec 2022 · 1 min read
Android Companion Object in Kotlin Kotlin provides a brand new keyword companion which not exists in other programming languages. But don't be panic, it is not something new when you have one step closer. A Needone 7 Dec 2022 · 1 min read
Android How to enable iMessage on your Android devices for free This article demonstrates how to connect iMessage service to your Android phone/pad so that you can contact your iPhone friends freely from now on. To finish the article will Needone 10 Nov 2020 · 2 min read
Android How to auto-sizing text size in Android Most of the time we can display the text as follows: Needone 11 Oct 2020 · 1 min read
Android An easy example on how to use Jetpack ViewModel and LiveData Jetpack broken up into four main areas: Architecture, Foundation, Behavior and UI. ViewModel ViewModel helped to achieve two things: * help the project to adopt MVVM architecture * hold the data in Needone 22 Jul 2020 · 4 min read
Android Android: Are you familiar with onCreate(), onStart() onResume() and ... running order of onCreate, onStart, onResume and onDestory .... in Android using Kotlin Needone 6 Jul 2020 · 3 min read
Android How to find your Play Store ID For most Android phone users, Play Store is already installed on the phone already. It is a portal for you to download and install new apps with just few taps. Needone 16 Apr 2020 · 1 min read
Mobile Load local html resource on Android using webView Local html and sources are necessary when you try to show an error page dealing with situations such as 404, 500 and etc errors happened on remote server. And here Needone 28 Aug 2018 · 1 min read
Mobile Dive into Android Application Lifecycle – A simple tutorial for iOS developers Introduction Due to some requirements from work, I was asked to immigrate current iOS product into Android. If you are like me, who are mainly working on iOS, but want Needone 11 Jul 2018 · 3 min read
Mobile Fastlane Practise with Android and iOS (with examples) Fastlane Features "The easiest way to build and release mobile apps". Which handles the majority of the manual works Fastlane has the following features: * FREE * Build Alpha/Beta/Production binary, Needone 6 Jul 2018 · 2 min read