com.nghelong.blogexample.MainActivity
sử dụng Notification. Điều này có nghĩa là khi ứng dụng chúng ta đang chạy thì xuất hiện một Notification message trên thanh status bar. Khi người dùng click vào Notification thì màn hình MainActivity bật lên.
Notification notification = new Notification(icon, tickerText, when); Bundle xtra = new Bundle();
Intent ntent = new Intent();
ntent.setClassName("
com.nghelong.blogexample", "
com.nghelong.blogexample.MainActivity"); //set data here
//
xtra
ntent.putExtras(
xtra
); int flags = Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP;
ntent.setFlags(flags);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
ntent, PendingIntent.FLAG_UPDATE_CURRENT);
notification.setLatestEventInfo(context, contentTitle, contentText, pendingIntent); nm.notify(NOTIFICATION_ID, notification);
Không có nhận xét nào:
Đăng nhận xét