Last active
July 20, 2024 03:28
-
-
Save paraya3636/bf8108a75eb49323e56c0c90dd0747e0 to your computer and use it in GitHub Desktop.
Kotlin Android MainApplication class for global applicationContext.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Not object class. AndroidManifest.xml error happen. | |
class MainApplication : Application() { | |
init { | |
instance = this | |
} | |
companion object { | |
private var instance: MainApplication? = null | |
fun applicationContext() : Context { | |
return instance!!.applicationContext | |
} | |
} | |
override fun onCreate() { | |
super.onCreate() | |
// initialize for any | |
// Use ApplicationContext. | |
// example: SharedPreferences etc... | |
val context: Context = MainApplication.applicationContext() | |
} | |
} |
Thanks!! Love u
hi u coulde use in your manifest
In Manifest
<application
android:name="MainApplication " => Will in red then generate autocomplete
In Fragment
MainApplication .applicationContext().resources
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Pls.. how can I use or implement this.