何かをするのに助けが必要です。Androidステータスバーに通知を表示しようとしています。
サーバーとの同期が進行中であることをユーザーに通知します。
今、私はこのコードを使用し、正常に動作します:
NotificationCompat.Builder builder = new NotificationCompat.Builder(this)
.setSmallIcon(android.R.drawable.stat_notify_sync).setWhen(System.currentTimeMillis())
.setAutoCancel(false).setOngoing(true);
NotificationManager nm = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notif = builder.getNotification();
nm.notify(1, notif);
唯一の問題は、ユーザーがステータスバーを展開したときにビューが作成されることです。私がやりたいことは、コンテンツビューなしで、ステータスバーの上部に小さなアイコンのみを表示することです.
誰もそれを行う方法を知っていますか? 前もって感謝します!