何か手助けが必要です。 アンドロイドのステータスバーに通知を表示しようとしています。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);
唯一の問題は、ユーザがステータスバーを展開するとビューが作成されていることです。私がしたいのは、コンテンツビューなしでステータスバーの上部に小さなアイコンを表示するだけです。
誰でも知っていますか? ありがとうございます!
私が言うCommonsWareからいくつかの答えを見てそれは不可能だが、私もsで見たアプリ(例: Yahoo Mail) –