1
私はNotificationCompatのv7を使用して通知を作成しています。ロック画面の情報が少ないパブリックバージョンと、電話機のロックが解除されたときに利用可能な通知リストの詳細情報を含むプライベートバージョンが必要です。アンドロイドのデベロッパー向けドキュメントに記載されている手順はかなり単純です...しかし、彼らは私のために働いていません。私はロック画面でも、プライベートバージョンを常に取得します。私の通知の公開バージョンがロック画面に表示されないのはなぜですか?
私が間違っていることを教えてもらえますか?
私はSamsung Galaxy S6でAndroidバージョン6.0.1を実行しています。私の通知のプライベートバージョンでは、RemoteViewsクラスを使用してカスタムビューを設定しています。ここで
は私のコードです:
NotificationCompat.Builder publicNotificationBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(context)
.setContentTitle(expense.name)
.setContentText(expense.amount)
.setAutoCancel(true)
.setSmallIcon(R.drawable.wally_icon)
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
NotificationCompat.Builder notificationBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(context)
.setAutoCancel(true)
.setSmallIcon(R.drawable.wally_icon)
.setContent(remoteViews)
.setVisibility(NotificationCompat.VISIBILITY_PRIVATE)
.setPublicVersion(publicNotificationBuilder.build())
.setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION));
notificationManager.notify((int)expense.id, notificationBuilder.build());
公共の通知のみを担保lockscreesのためである、パターンやピンが必要になりi.e.one、あなたがロックされていますか? –
私の指紋で私のロックを解除する必要がありますが、ロック画面としてカウントされると思います。 – SnoopDougg
はい、私は持っていませんが、 –