我读过很多这样的问题,但似乎没有一个问题可以解决我的问题。
问题在于:
AlertScreen ad = new AlertScreen(SensorListenerService.this);
在我的服务类中:
public class SensorListener extends Service implements SensorEventListener {
public int onStartCommand(Intent intent, int flags, int startId) {
startForeground(Process.myPid(), new Notification());
AlertScreen ad = new AlertScreen(SensorListener.this); //problem
ad.show();
return START_STICKY;
}
...
它调用我的AlertScreen类:
public class AlertScreen extends AlertDialog {
public AlertScreen(Context context) {
super(context);
}
...
LogCat有什么要说的:
有人能解释一下这个问题吗?
答案 0 :(得分:7)