プッシュ通知を作成し、必要なアクティビティにユーザーを送信することはできますが、ユーザーがそのアクティビティにアクセスするたびに、onCreate関数が呼び出されないことに気付きました。
そうなるはずですか?アクティビティのonCreateが呼び出されるように設定するにはどうすればよいですか?
これが私の活動です:
public class QuestionActivity extends BaseListActivity
{
@Override
public void onCreate(Bundle savedInstanceState)
通知の生成方法は次のとおりです。
Intent notificationIntent = new Intent(context, MainActivity.class);
if ( notification_type != null && notification_type.equals("question"))
{
notificationIntent = new Intent(context, QuestionActivity.class);
}
else
if ( notification_type != null && notification_type.equals("plan"))
{
notificationIntent = new Intent(context, TopicActivity.class);
}
// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
PendingIntent intent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
Uri defaultSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Notification notification = new NotificationCompat.Builder(context)
.setContentTitle(title)
.setContentText(message)
.setContentIntent(intent)
.setSmallIcon(icon)
.setLights(Color.YELLOW, 1, 2)
.setAutoCancel(true)
.setSound(defaultSound)
.build();
notificationManager.notify(0, notification);
ありがとう!