在我的应用程序中有一个服务类,需要从该服务类调用一个活动类,但每次调用活动类时它都会向我显示一条消息 应用程序没有响应,下面是我的代码..
public class MyAlarmService_Movie extends Service {
@Override
public void onCreate() {
super.onStart(intent, startId);
Intent in=new Intent().setClass(MyAlarmService.this,Reminder.class);
startActivity(in);
}
}
答案 0 :(得分:9)
在开始意图之前给予in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
。