作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用/理解 BroadcastReceivers 和 IntentFilters 时遇到困难。我的测试 Activity 中有以下代码。测试 Activity 包含一个 .addProximityAlert,如果 .addProximityAlert 被触发我想广播到 Test2 接收器。当我测试这个时我得到一个错误。我究竟做错了什么?
测试 Activity :
public class Test extends BroadcastReceiver
{
LocationManager lm;
...
@Override
public void onReceive(Context context, Intent intent)
{
...
final String PROX_ALERT_INTENT = "com.example.proxalert.Test2";
Intent alert = new Intent(PROX_ALERT_INTENT);
PendingIntent proximityIntent = PendingIntent.getBroadcast(context, 0, alert, 0);
lm.addProximityAlert(latitude, longitude, radius, expiration, proximityIntent);
IntentFilter filter = new IntentFilter(PROX_ALERT_INTENT);
context.registerReceiver(new Test2(), filter);
测试 2 接收器:
public class Test2 extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
String key = LocationManager.KEY_PROXIMITY_ENTERING;
Boolean entering = arg1.getBooleanExtra(key, false);
if (entering) {
//toast notification "welcome"
}
...
最佳答案
测试扩展 BroadCast 接收器,因此必须通知广播才能激活。你确定那是你想要做的吗?
这真的是 Android 的测试吗?我不这么认为。因此,如果您只是删除测试类的代码,创建一个带有按钮的 Activity ,并在单击按钮时在测试中执行您的代码。
关于android - 为什么我的接收器收不到广播?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13410569/
我是一名优秀的程序员,十分优秀!