通知を通知領域の上に配置しようとしています。
解決策は、次のような未来の時間で通知オブジェクトにパラメーター「when」を設定することです。
notification.when = System.currentTimeMills()*2;
私がこれで使用しているコード:
long timeNotification = System.currentTimeMillis()*2;
Notification notification = new Notification(statusIcon,c.getResources().getString(R.string.app_name),timeNotification);
notification.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR;
notification.when = timeNotification;
notification.priority = Notification.PRIORITY_MAX;
ただし、一部のアプリ (Facebook など) は、現在の時間を私のものよりも簡単に通知できます。
通知を更新すると、これらの通知の下に残ります。
Notification
通知領域の一番上に表示するには、どのパラメータを設定する必要がありますか?