How to pass context from activity to activity?

南笙酒味 提交于 2019-12-08 16:27:42

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!