现在我对我的主要活动发出警报,启动了一个在状态栏上启动通知的类。当我点击通知时,它会打开我的主要活动,现在我希望它在该活动中打开一个特定的视图。
这是我的通知代码。
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(ns);
int icon = android.R.drawable.stat_notify_chat; // icon from resources
CharSequence tickerText = "TickerText"; // ticker-text
long when = System.currentTimeMillis(); // notification time
CharSequence contentTitle = "My notification"; // message title
CharSequence contentText = "Hello World!"; // message text
//This is the intent to open my main activity when the notification is clicked
final Intent notificationIntent = new Intent(context, mainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
// the next two lines initialize the Notification, using the configurations above
Notification notification = new Notification(icon, tickerText, when);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
mNotificationManager.notify(notifID, notification);
这是我的主要活动使用的布局中的按钮,它打开了我希望打开通知的视图(图表视图)。
<Button
android:id="@+id/graphsButton"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_below="@id/reviewButton"
android:layout_toRightOf="@id/medicineButton"
android:onClick="openGraphs"
android:text="Graphs" />
单击按钮时。它在主类中执行以下方法。
public void openGraphs(View v) {
canExit = false;
setContentView(R.layout.graphs);
}
基本上,我收到了打开应用程序并启动主要活动的通知,但我希望它能直接启动图表视图。
有人能帮助我吗?
答案 0 :(得分:5)
您可以使用intent的附加功能向通知中的待处理意图集添加标记。在活动开始时评估意图。如果在起始意图中找到标志,则执行openGraphs()
中的代码。确保获得最新的意图(不是之前可能已启动该活动的意图,这里有一些建议:https://stackoverflow.com/a/6838082/1127492)。
答案 1 :(得分:0)
是否有什么阻止您直接在活动中显示图表?
在上面的Activity中,没有按钮,单击时显示图形,直接在onCreate()方法中将视图设置为R.layout.graphs。
如果你有其他目的的规定活动,那么创建一个单独的活动只是为了显示图形并从notificationIntent指向它。