からのGPS通知を送信しますユーザーが自分のリストに含まれている30の場所のいずれかにいる場合通知部分は準備が整いました。アクティビティでこれを行うことができます(座標が等しい場合はリスト内を反復して通知を送信しますが、すべてのアクティビティでこれを行うことができます。開けない?ありがとうは、私は(30+経度・緯度のペア)と私のタスクは、次のさを座標のリストを持ってどこにでも
Intent intent = new Intent(AGPS.this, SecondClass.class);
TaskStackBuilder stackBuilder = TaskStackBuilder.create(AnotherGPS.this);
stackBuilder.addParentStack(SecondClass.class);
stackBuilder.addNextIntent(intent);
PendingIntent pendingIntent = stackBuilder.getPendingIntent(0, PendingIntent
.FLAG_UPDATE_CURRENT);
NotificationCompat.Builder mBuilder =
(NotificationCompat.Builder) new NotificationCompat.Builder(AnotherGPS.this)
.setSmallIcon(R.drawable.cam_icon)
.setContentTitle("My notification")
.setContentText("content of notification")
.setContentIntent(pendingIntent);
NotificationManager NM = (NotificationManager) getSystemService(Context
.NOTIFICATION_SERVICE);
NM.notify(0, mBuilder.build());
感謝を呼び出します。確かめます! –