CCChayan Chandro Sutrodharinchayansd.hashnode.dev·Dec 18, 2023 · 1 min readAccessToken and RefreshToken1. Access Token Access token (generated in authorization server) allows temporary to restricted resources like API. Access tokens are short-lived. These tokens are valid for only a few hours or something like that. Any user with an access token is au...00
CCChayan Chandro Sutrodharinchayansd.hashnode.dev·Apr 7, 2023 · 1 min readWebView In AndroidTo show your website via your app you can use webview. In xml file : chose a layout then put them a webwiew. class MainActivity : AppCompatActivity() { @RequiresApi(Build.VERSION_CODES.O) override fun onCreate(savedInstanceState: Bundle?) { ...00
CCChayan Chandro Sutrodharinchayansd.hashnode.dev·Apr 3, 2023 · 1 min readIntents in AndroidAn intent is an Android element that facilitates navigation from one screen to another. They are also used to pass data between activities or across applications. Intents are two types : Explicit Intent. Implicit Intent. Explicit Intent: In the a...00
CCChayan Chandro Sutrodharinchayansd.hashnode.dev·Mar 28, 2023 · 3 min readScroll view in androidScroll view is an important component of the Android development environment, allowing developers to create user interfaces that can accommodate large amounts of content in a single screen. The scroll view can be used to display text, images, or othe...00
CCChayan Chandro Sutrodharinchayansd.hashnode.dev·Mar 27, 2023 · 2 min readThe activity lifecycle in AndroidAndroid applications have a unique lifecycle that determines how they behave in various situations. Understanding the activity lifecycle is essential for any Android developer to create robust and responsive applications. An activity is a basic build...00