Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
NotificationManager notificationManager = NotificationManager) getSystemService (NOTIFICATION_SERVICE);
Notification notification = new Notification(R.drawable.notifyicon,"A new notification", System.currentTimeMillis());
notification.flags |= Notification.FLAG_INSISTENT;
notification.sound = Uri.parse("file://"+soundFilename);
Intent notificationIntent = new Intent(this, ActivityNotification.class);
notificationIntent.putExtra("title","Location Reminder");
notificationIntent.putExtra("notification",notification);
notificationIntent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent activity = PendingIntent.getActivity(getApplicationContext(), 0, notificationIntent,Notification.FLAG_AUTO_CANCEL);
notification.setLatestEventInfo(getApplicationContext(), "Location Reminder","This is the message", activity);
notificationManager.notify(0, notification);
The Activity notification class is<br/>
public class ActivityNotification extends Activity{ 
private String title,notification;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
onNewIntent(getIntent());
}
@Override
public void onNewIntent(Intent intent){
Bundle extras = intent.getExtras();
if(extras != null){
if(extras.containsKey("title"))
{
setContentView(R.layout.alert);
TextView txt = (TextView)findViewById(R.id.msg);
txt.setText(extras.getString("title"));
Button ok = (Button)findViewById(R.id.alerdialog);
ok.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
finish();
}
});    
}
}   
}
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.