Wie kann ich in einer Android Auto Media -App auf den Carcontext zugreifen?Android

Forum für diejenigen, die für Android programmieren
Anonymous
 Wie kann ich in einer Android Auto Media -App auf den Carcontext zugreifen?

Post by Anonymous »

Ich erstelle derzeit eine Radio -App für Android Auto und möchte einfach eine Benachrichtigung an den Bildschirm senden, wenn ein Lied angefordert wird. < /p>
Ich versuche, einen Cartoast zu senden, aber Es erfordert einen Carcontext: < /p>
CarToast.makeText(**CARCONTEXT**, "Song requested!", CarToast.LENGTH_SHORT).show()
< /code>
Mein Problem ist, dass ich nicht einfach auf den Carcontext zugreifen kann, da ich eine Medien -App mit einer erweiterten MediaBrowserServiceCompat -Klasse habe. Dort habe ich keinen Weg gefunden, auf den Carcontext zuzugreifen. Normalerweise konnte ich den Carcontext bekommen, wenn ich einen CarappService erstelle, aber ich weiß nicht, wie ich eine Medien -App mit dem CarappService erstellen kann. Es gibt überhaupt keine Dokumentation für so etwas.private fun createNotificationChannel() {
// Create the NotificationChannel, but only on API 26+ because
// the NotificationChannel class is not in the Support Library.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
val name = "My Radio"
val descriptionText = "My Radio Notifications"
val importance = NotificationManager.IMPORTANCE_DEFAULT
val channel = NotificationChannel(CHANNEL_ID, name, importance).apply {
description = descriptionText
}
// Register the channel with the system.
val notificationManager: NotificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
notificationManager.createNotificationChannel(channel)
}
}

fun sendNotification(message: String) {
println("Sending notification: $message")
var builder = NotificationCompat.Builder(context, CHANNEL_ID)
.setSmallIcon(R.drawable.ic_custom_search)
.setContentTitle("My Radio")
.setContentText(message)
.setPriority(NotificationCompat.PRIORITY_DEFAULT)

with(NotificationManagerCompat.from(context)) {
if (ActivityCompat.checkSelfPermission(
context,
Manifest.permission.POST_NOTIFICATIONS
) != PackageManager.PERMISSION_GRANTED
) {
return@with
}

var notificationId = (0..10000).random()
notify(notificationId, builder.build())
}
< /code>
Dies funktioniert einwandfrei, um eine normale Benachrichtigung an das Telefon zu senden. Es wird jedoch nicht auf der Kopfeinheit angezeigt. Greifen Sie auf den Carcontext im MediaBrowserServiceCompat zu oder gibt es eine andere Möglichkeit, eine Benachrichtigung in Android Auto?

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post