0

Udacity のチュートリアルと Android auto の開発者サイトに従いました。テストには DVU を使用しています。通知は DHU には表示されませんが、電話には表示されます。コードは次のとおりです。

GcmListenerService の使用:

 final PendingIntent contentIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT
                | PendingIntent.FLAG_ONE_SHOT);

final PendingIntent contentIntent = stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT
                | PendingIntent.FLAG_ONE_SHOT);
        Intent msgHeardIntent = new Intent()
                .addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES)
                .setAction("com.xyz.abc.MY_ACTION_MESSAGE_HEARD")
                .putExtra("conversation_id", 9999);
        PendingIntent msgHeardPendingIntent =
                PendingIntent.getBroadcast(getApplicationContext(),
                        9999,
                        msgHeardIntent,
                        PendingIntent.FLAG_UPDATE_CURRENT);

        NotificationCompat.CarExtender.UnreadConversation.Builder unreadConvBuilder =
                new  NotificationCompat.CarExtender.UnreadConversation.Builder("TestAndroidAuto")
                        .setReadPendingIntent(msgHeardPendingIntent);

        unreadConvBuilder.addMessage(description);
        NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(this)
                        .setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
                        .setSmallIcon(R.drawable.ic_stat_notification_icon)
                        .setContentTitle(title)
                        .setTicker(ticker)
                        .setStyle(new NotificationCompat.BigTextStyle()
                                .bigText(description))
                        .setContentText(description)
                        .setDefaults(Notification.DEFAULT_ALL);
        mBuilder.extend(new NotificationCompat.CarExtender().setUnreadConversation(unreadConvBuilder.build()));
        mBuilder.setContentIntent(contentIntent);
        mBuilder.setAutoCancel(true);
        mNotificationManager = NotificationManagerCompat.from(getApplicationContext());
        mNotificationManager.notify(REMOTE_NOTIFICATION_ID, mBuilder.build());

これはかなり新しいので、どこが間違っているのか理解できませんでした。

4

1 に答える 1

2

返信アクションを設定していないため、android auto では通知が表示されません。まず、最初に次のようなリモート入力を作成します。

// Build a RemoteInput for receiving voice input in a Car Notification
        RemoteInput remoteInput = new RemoteInput.Builder(9999)
                .setLabel(msg)
                .build();

次に、unreadConversation ビルダーで replyAction を設定します。だから今あなたは次のようになります:

NotificationCompat.CarExtender.UnreadConversation.Builder unreadConvBuilder =
            new  NotificationCompat.CarExtender.UnreadConversation.Builder("TestAndroidAuto")
                    .setReadPendingIntent(msgHeardPendingIntent)
            .setReplyAction(msgHeardPendingIntent, remoteInput);;
于 2015-12-03T17:18:45.913 に答える