本人设计了如下一段代码,想实现在BroadcastReceiver中启动Service或Activity,经测试Service可以启动成功,但Activity启动没有反应(不报错,也没有启动),请问各位大师,是什么原因?如何解决?是否需要在AndroidManifest.xml文件中加什么内容?
package com.wnyz20150626;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class BootCompleteReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// 这个类是用来在手机启动后,接收到手机启动的信息,然后启动电话监听服务的
Intent service = new Intent(context, FloatingWindowService.class);
context.startService(service);
Log.e("PhoneService","服务已经成功启动");
Intent newIntent = new Intent(context, ImExcel.class);
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
}
}
不胜感谢!
package com.wnyz20150626;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class BootCompleteReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// 这个类是用来在手机启动后,接收到手机启动的信息,然后启动电话监听服务的
Intent service = new Intent(context, FloatingWindowService.class);
context.startService(service);
Log.e("PhoneService","服务已经成功启动");
Intent newIntent = new Intent(context, ImExcel.class);
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(newIntent);
}
}
不胜感谢!