Context is an abstract class, whose implementation is provided by Android System. It provide acces to application related resources,databses,shared preferences... We have different ways to access the context. When to use getContext()? Any instance which is not running long time, there we can use getContext(). We can use it in long running instances but we need to hanlde it by theire lifecycle methods to avoid memory leaks. When to use getBaseContext()? Inside activity life cycle we can use the getBaseContext(), this will be lives until the activity lifecycle alive. When to use getApplicationContext()? getApplicationContext() returns the application context of entire application. It will live untile the application life cycle, once application terminated it will destory When to use getThemedContext()? This context will be used to hanlde the views theme context inside the actionbar. Note: we have to use proper context on the lifecycle of each instance to avoid the memory leaks in the application.
What is ANR? How to avoid and resolve it?
What is the difference between match_parent and fill_parent?
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Decompile APK Files: How to Get Source Code - RRutors Guide
What is the Different Between val and var in Kotlin?
How to get a contact image using a phone number in android?
How to Get bitmap from drawable: Android
How to get an image resource by it's name in android?
How to check Android version?
How to save activity State in Android?
What are Android Versions available?
How can i comment inside xml file in android studio?
What is Application?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What is NetworkOnMainThread Exception?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
How to convert milli seconds to hours, minutes and seconds in Android?
What is Android?
How to copy database from assets folder in android using kotlin
What is Context?
How to get screen size (width,height) in Android?
How to start a new activity on button click
How to avoid multiple button click at same time in android?
How to Use Deprecated Handler() in Android - RRutors Guide
Explain Fragment Life Cycle
How to reduce APK package size?
What is ANR in android?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
How to Generate signed apk with android studio
Fix Android Emulator Kill Error When Running Your App
Extract Date and Time from Long Type Variable - RRutors
Invoke-customs are only supported starting with android 0 --min-api 26
Fix Play Store Rejection Due to SMS Permission - RRutors
What are the notifications available in android?
Open PDF in Google Drive with Intent in Android - RRutors
How to stop EditText focus at Activity startup in Android?
Check List for Generate Signed APK Android
Add Jar/Library Files as Dependency in Android Studio
How to convert DP to Pixel and Pixel to Dp?
Hide/Disable soft keyboard on Activity launch: Android