1
我試圖做到這一點:非棄用方式的Android
Notification not = new Notification(idIcon, text, System.currentTimeMillis());
PendingIntent pInt = PendingIntent.getActivity(ctx, 0, new Intent(ctx, the_class_to_call), 0);
not.setLatestEventInfo(ctx, app_name, text, pInt);
但這被廢棄。
我試圖做到這一點:
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.app_logo)
.setContentTitle("My notification")
.setContentText("Hello World!");
但是那是過時了。
現在,什麼是非棄用的方式來顯示android中的通知? 我發現的所有回覆都是這兩種方式。
我的minSdkVersion:19