Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个Activity其他对象正在做一些工作。有没有一种方便的方法可以将共享对象放入该Context对象并在其他地方使用它们,就像我在使用 Eclipse RCP (e4) 时所做的那样?这是Android术语的好习惯吗?
Activity
Context
我假设我不切换活动,我只是将工作分配给我的Activity.
我检查了 API,Context但没有找到任何明显的方法用于此目的。
有没有一种方便的方法可以将共享对象放入此 Context 对象并在其他地方使用它们,就像我在使用 Eclipse RCP (e4) 时所做的那样?
当您子类Activity化时,欢迎您在其中包含数据成员。
我假设我不切换活动,我只是将工作分配给我的活动中的其他对象。
这听起来更像是标准数据成员和相关方法的角色。