How to start an Intent if context is not Activity Context but Application Context

家住魔仙堡 提交于 2019-11-27 23:19:15

问题


I'm trying to start an activity from a class that extends BroadcastReceiver.

public void onReceive(Context context, Intent intent) {

the problem is that parameter context is the Application context and not an Activity context.

Is there a way start an intent using the Application context?


回答1:


Here is sample code how to call another activity using context, set flag as per your requirement:

public void onReceive(Context context, Intent intent) { 

  Intent startActivity = new Intent();  
  startActivity.setClass(context, xxx.class); 
  startActivity.setAction(xxx.class.getName()); 
  startActivity.setFlags( 
              Intent.FLAG_ACTIVITY_NEW_TASK 
              | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS); 
  context.startActivity(startActivity); 
}



回答2:


Yup, simply use the context and call the startActivity() method from that context.



来源:https://stackoverflow.com/questions/9237448/how-to-start-an-intent-if-context-is-not-activity-context-but-application-contex

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