尝试从 ContentObserver 激发意图

发布于 2024-12-26 07:24:32 字数 780 浏览 1 评论 0原文

我想从 ContentObserveronChange() 方法激发一个 Intent。我试图在发送 SMS 时运行一个服务,因此使用 ContentObserver,但 Eclipse 给我错误,因为它无法解析“上下文”。下面是我的课程代码。

public class SmsObserver extends ContentObserver {

public SmsObserver(Handler handler) {
    super(handler);
    // TODO Auto-generated constructor stub
}

@Override
public void onChange(boolean selfChange) {
    super.onChange(selfChange);

    // On outgoing SMS, do this
    Intent update = new Intent(context, UpdateService.class);
    PendingIntent pendingIntent = PendingIntent.getService(context, 0, update, 0);

    try {
        pendingIntent.send();
    } catch (CanceledException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    }
}

I'd like to fire an intent from the onChange() method of my ContentObserver. I'm trying to get a Service to run when an SMS is sent, hence the ContentObserver, but Eclipse is giving me errors because it cannot resolve "context". Below is my code for the class.

public class SmsObserver extends ContentObserver {

public SmsObserver(Handler handler) {
    super(handler);
    // TODO Auto-generated constructor stub
}

@Override
public void onChange(boolean selfChange) {
    super.onChange(selfChange);

    // On outgoing SMS, do this
    Intent update = new Intent(context, UpdateService.class);
    PendingIntent pendingIntent = PendingIntent.getService(context, 0, update, 0);

    try {
        pendingIntent.send();
    } catch (CanceledException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

念三年u 2025-01-02 07:24:32

是否有某种原因无法在创建实例时将应用程序上下文传递到 SmsObserver 中?

public class SmsObserver extends ContentObserver {

    private Context context;
    public SmsObserver(Handler handler, Context context) {
        super(handler);
        this.context = context;
    }
}

调用类:

new SmsObserver(handler, getApplicationContext())

Is there some reason you cant just pass the application context into the SmsObserver when the instance is created?

public class SmsObserver extends ContentObserver {

    private Context context;
    public SmsObserver(Handler handler, Context context) {
        super(handler);
        this.context = context;
    }
}

Invoking class:

new SmsObserver(handler, getApplicationContext())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文