我有一个Android活动,它还在通知栏上显示通知,并在下拉菜单中对其进行进一步描述。尝试单击通知时会发生此问题。从我在大多数其他问题中看到的,在其上放置一个标志以清除其他视图应解决问题。不过这是我的代码:
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.stat_sys_secure;
CharSequence tickerText = "Browser Security Enabled";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = getApplicationContext();
CharSequence contentTitle = "Browser Security";
CharSequence contentText = "Security Vulnerability Detected";
Intent notificationIntent = new Intent(this, PrivacyMessage.class);
//Should clear current view, and show this new activity
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
final int HELLO_ID = 1;
mNotificationManager.notify(HELLO_ID, notification);
它启动的活动,PrivacyMessage有一个oncreate,它将自己的XML文件设置为contentview,并且应该显示出来。但是,当点击通知时,它什么都不做,只是让你回到你所在的活动。我的想法是我可能需要将新活动添加到清单中,但是无法确定我应该添加的内容,以及在哪里。这是我目前的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.browser"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon"
android:label="@string/app_name"
android:debuggable="true">
<activity android:name=".Browser"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
我希望我在某个地方错过了令人眼花缭乱的明显。但任何想法在哪里?
答案 0 :(得分:0)
首先,如果至少有一个标志可用,则标志不会强制创建新活动,因此在大多数情况下,只会调用onResume方法(检查Activity lifecycle)。
然后,如果您有一个活动,它如何知道要显示什么?您需要做的是区分从启动器调用应用程序和从通知中调用应用程序之间的意图。
您应该在清单中专门为通知处理创建第二个intent过滤器。然后在你的onCreate / onResume中,检查意图知道你在哪种情况下并相应地填充你的视图。