创建多个挂起的意向



myRange 的值始终为 1、2 或 3。

它给出一个空指针异常错误。必须指定挂起。

如果我不检查 if 语句中的 myRange 值,它不会给出错误,但它不会创建 pendingIntent2 和 pendingIntent3。

我尝试发送不同的请求代码,但它不起作用。

private PendingIntent createGeofencePendingIntent(int myRange) {
Log.d(TAG, "createGeofencePendingIntent");
Toast.makeText(getContext(),"creating intent function" + myRange ,Toast.LENGTH_SHORT).show();
if ( geoFencePendingIntent1 != null && myRange == 1)
return geoFencePendingIntent1;
if ( geoFencePendingIntent2 != null  && myRange == 2 )
return geoFencePendingIntent2;
if ( geoFencePendingIntent3 != null  && myRange == 3)
return geoFencePendingIntent3;
if(myRange == 1)
{
Toast.makeText(getContext(),"creating intent 1",Toast.LENGTH_SHORT).show();
Intent intent1 = new Intent( getContext(), GeofenceTransitionService.class);
intent1.putExtra("region",inString[0]);
geoFencePendingIntent1 = PendingIntent.getService(
getContext(), GEOFENCE_REQ_CODE, intent1, PendingIntent.FLAG_UPDATE_CURRENT );
return geoFencePendingIntent1;
}
else if (myRange ==2)
{
Toast.makeText(getContext(),"creating intent 2",Toast.LENGTH_SHORT).show();
Intent intent2 = new Intent( getContext(), GeofenceTransitionService.class);
intent2.putExtra("region",inString[1]);
geoFencePendingIntent2 =  PendingIntent.getService(
getContext(), 5, intent2, PendingIntent.FLAG_NO_CREATE );
return geoFencePendingIntent2;
}
else if (myRange == 3)
{
Intent intent3 = new Intent( getContext(), GeofenceTransitionService.class);
return PendingIntent.getService(
getContext(), GEOFENCE_REQ_CODE, intent3, PendingIntent.FLAG_UPDATE_CURRENT );
}


geoRange++;
// Toast.makeText(getContext(), "leaving my geofence", Toast.LENGTH_SHORT).show();
return null;
}

你在这里有几个问题。第一个是这样的:

geoFencePendingIntent2 =  PendingIntent.getService(
getContext(), 5, intent2, PendingIntent.FLAG_NO_CREATE );

这可能总是会像您FLAG_NO_CREATE指定的那样返回null。仅当匹配的PendingIntent已存在(可能不存在(时,这将仅返回非null结果。请改用FLAG_UPDATE_CURRENT

第二个问题是你需要确保你的3个不同的PendingIntent中的每一个都是唯一的。为此,您需要在对PendingIntent.getService()的调用中提供唯一的requestCode,或者您需要在传递给PendingIntent.getService()Intent中提供唯一的操作。否则,当您调用PendingIntent.getService()时,您只会不断返回相同的PendingIntent(并且不会创建一个新(。

Stackoverflow上大约有一百万个关于这个问题的问题,其中大多数都有关于PendingIntent创建和匹配如何工作的详细说明。

最新更新