问题
I have a main activity, and it summons another activity to display some data.
I have a private database helper object that I use throughout the main activity code. Is there a way to pass the context of my main activity to my sub activity in an elegant way? (ie, from subclass, something like getCallingActivityContext()
)
I could always create new database helper objects.
回答1:
Extending the Application class helps you to allow declare/access global variables. You can set your variables from any activity to ApplicationContext
and access it from other activity without using bundle.
How to declare global variables in Android? will help you.
回答2:
For your case, I would recommend you to extend instead the Application class. All your activities have access to the Application context by calling getApplicationContext() at any time. Check here the 1st answer for an example.
来源:https://stackoverflow.com/questions/7734791/how-to-pass-context-from-activity-to-activity