如何在单击通知时启动活动?

Gab*_*aby 4 notifications android android-activity

我的Android应用程序中有一个奇怪的问题.我已完成通知,我想在点击通知时启动新活动.问题是当我点击通知时没有任何反应,我不知道问题出在哪里?任何人都可以帮助我吗?这是我的代码:

notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
CharSequence NotificationTicket = "Notification";
CharSequence NotificationTitle = "Notification";
CharSequence NotificationContent = "Test";
long when = System.currentTimeMillis();

Notification notification = new Notification(R.drawable.icon,
NotificationTicket, when);

Context context = getApplicationContext();

Intent notificationIntent = new Intent(this, ShopsOnMap.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
notificationIntent, 0);

notification.setLatestEventInfo(context, NotificationTitle, NotificationContent, contentIntent); 
notificationManager.notify(NOTIFICATION_ID, notification);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP| Intent.FLAG_ACTIVITY_SINGLE_TOP); 
Run Code Online (Sandbox Code Playgroud)

eas*_*ese 9

我遇到了同样的问题,然后意识到我没有在Manifest中宣布我的新活动.

<activity
        android:name=".YourActivityHere">
        </activity>
Run Code Online (Sandbox Code Playgroud)