DPDevajit Patarinpatar.hashnode.dev·Apr 20, 2024 · 6 min readActivity Lifecycle in AndroidIn Android Activity referred as an one screen in the application. The Activity in an application transition through different states in their lifecycle when user navigate through, out of and back to the application. The best example of video player a...00
DPDevajit Patarinpatar.hashnode.dev·Apr 13, 2024 · 2 min readDifference Between viewLifecycleOwner.lifecycleScope.launch, lifecycle.coroutineScope.launch, lifecycle.coroutineScope.launchWhenCreatedThese three functions are related to managing coroutines within the context of Android's Lifecycle library. Let's break down each one and understand their differences: viewLifecycleOwner.lifecycleScope.launch: This function launches a coroutine with...00
DPDevajit Patarinpatar.hashnode.dev·Apr 7, 2024 · 1 min readStatic Vs Dynamic ApplicationStatic Application: A Static application is a software application that is fixed and unchanging once it is created and deployed. The features and content of the application remain same unless developer manually changed it. Static applications are ...00