Application is base class in Android, which contains all components like activites,services... The Application class is first instanitated while running any application. We can write Custom Application class by extending the Application class. class MyApplication extends Application{ @Override } } We can declare any single instance classes here and use entire application. To execute this class we need to set Application name in manifest file.
public void onCreate() {
super.onCreate();
How to get an image resource by it's name in android?
Key Points to remember while develop the Android Application.
What is Android?
What is the Different Between val and var in Kotlin?
Check List for Generate Signed APK Android
How to Get bitmap from drawable: Android
How to Exit android app on back pressed?
Decompile APK Files: How to Get Source Code - RRutors Guide
What is Application?
How to check Android version?
Open PDF in Google Drive with Intent in Android - RRutors
What is ANR in android?
How to copy database from assets folder in android using kotlin
How to find Android Device UDID or unique ID?
What is NetworkOnMainThread Exception?
How to Generate signed apk with android studio
How to convert milli seconds to hours, minutes and seconds in Android?
What is Intent? What is the difference between an implicit intent and an explicit intent?
Add Jar/Library Files as Dependency in Android Studio
Fix Play Store Rejection Due to SMS Permission - RRutors
How to save activity State in Android?
What are the notifications available in android?
How To Set Text Color Programmatically Android TextView?
What is ANR? How to avoid and resolve it?
Symmetric vs Asymmetric Encryption in Android Server - RRutors
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
What is "shared preferences" in Android ?
How can i comment inside xml file in android studio?
How to get screen size (width,height) in Android?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
What is Android Fragments?
How to reduce APK package size?
What happens next when the device switches between portrait and landscape?
How to get a contact image using a phone number in android?
How to stop EditText focus at Activity startup in Android?
How do I check in SQLite whether a table exists?
Extract Date and Time from Long Type Variable - RRutors
Permission denied for window type 2010 in Marshmallow device
Fix Android Emulator Kill Error When Running Your App
Set Activity to Fullscreen Mode in Android - RRutors