gpt4 book ai didi

android - 如何在 BroadcastReceiver 类中创建待定 Intent ?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:32:42 24 4
gpt4 key购买 nike

我正在尝试在广播接收器中创建 I broadcast intern,但我认为我输入的代码不正确。待定实习生应该如何寻找广播接收者?我想发短信。并且需要待处理的 Intent 来发送它。

最佳答案

I'm trying to create I broadcast intern inside of a broadcast receiver but I don't think I'm entering the right code for it.

它与任何其他 PendingIntent 没有什么不同,只是您必须使用传入的 Context 对象,因为 BroadcastReceiver 不是一个上下文:

public void onReceive(Context ctxt, Intent incoming) {
Intent i=new Intent(ctxt, OnAlarmReceiver.class);
PendingIntent pi=PendingIntent.getBroadcast(ctxt, 0, i, 0));

// do stuff with PendingIntent here
}

关于android - 如何在 BroadcastReceiver 类中创建待定 Intent ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6483656/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com