I am new to android application development. I am doing an application for my final year project.
My application will remind a user for an appointment. So far I manage to show the alert on notification bar on the appointment date.
My supervisor has requested to add a function, that, when a user tab on the notification bar, there will be a dialog window and show the details (Title of the appointment and the location).
How do I achieve this?
Try this:
just make the PendingIntent open up one of your Activities and have your Activity be complete transparent and just open a Dialog.
EDIT: IF you want to open an Activity from notification click event:
Assuming that notif is your Notification object:
For other assistance you can view this sample project, it will help you: