public void notification_status(Activity activity, String title, String details)
{
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) activity.getSystemService(ns);
int icon = R.drawable.bulogo;
CharSequence tickerText = "My App";
long when = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, when);
Context context = activity.getApplicationContext();
CharSequence contentTitle = title;
CharSequence contentText = details;
-----> Intent notificationIntent = new Intent(activity, ???????);
PendingIntent contentIntent = PendingIntent.getActivity(activity, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
notification.sound = Uri.parse("android.resource://com.champloo.mugen/" + R.raw.beep);
mNotificationManager.notify(1, notification);
}
こんにちはみんな私はこのメソッドを作ったので、アプリのどこかで呼び出してステータスバーに通知を投稿します。ユーザーがプログラムを一時的に閉じた場合に、プログラムに最後のアクティビティに戻るように指示する方法がわかりません。ステータスバーの下の通知を押しました。
助けてください!