0

パッケージcom.mmu.mpo;

android.app.Notification をインポートします。android.app.NotificationManager をインポートします。android.app.PendingIntent をインポートします。android.content.BroadcastReceiver をインポートします。android.content.Context をインポートします。android.content.Intent をインポートします。android.net.Uri をインポートします。android.os.Bundle をインポートします。android.widget.Toast をインポートします。public class AlarmReceiver extends BroadcastReceiver { private static int NOTIFICATION_ID = 1;

@Override public void onReceive(コンテキスト コンテキスト、インテント インテント) {

  NotificationManager manger = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);      Notification

notification = new Notification(R.drawable.ic_launcher, "Combi Note", System.currentTimeMillis());

          PendingIntent contentIntent = PendingIntent.getActivity(context, NOTIFICATION_ID, new Intent(context, AlarmReceiver.class), 0);
          Bundle extras=intent.getExtras();       String title=extras.getString("title");         String

note=extras.getString("note");

          notification.setLatestEventInfo(context, title, "Venue : " + note, contentIntent);      //notification.flags =

Notification.FLAG_INSISTENT; notification.defaults |= Notification.DEFAULT_SOUND;

  manger.notify(NOTIFICATION_ID++, notification);

      }

 };
4

1 に答える 1

1

これが役立つか試してみてください!

Context context = getApplicationContext();

CharSequence contentTitle = "Notification";

CharSequence contentText = "New Notification";

final Notification notifyDetails = new Notification(R.drawable.icon, "Consider yourself notified", System.currentTimeMillis());

Intent notifyIntent = new Intent(context, YourActivity.class);

PendingIntent intent = PendingIntent.getActivity(context, 0, notifyIntent,  PendingIntent.FLAG_UPDATE_CURRENT | Notification.FLAG_AUTO_CANCEL);

notifyDetails.setLatestEventInfo(context, contentTitle, contentText, intent);

((NotificationManager)getSystemService(NOTIFICATION_SERVICE)).notify(NOTIFICATION_ID, notifyDetails);
于 2012-12-31T14:44:32.777 に答える