Android Auto MapWithContentTemplate zeigt Inhalt, aber keine KarteAndroid

Forum für diejenigen, die für Android programmieren
Guest
 Android Auto MapWithContentTemplate zeigt Inhalt, aber keine Karte

Post by Guest »

Ich möchte mit Android Auto eine Karte, ein Fenster und einige Symbole auf der Auto-Headunit anzeigen. Der folgende Kotlin-Code läuft fehlerfrei. Der Bereich und die Symbole werden auf schwarzem Hintergrund angezeigt, jedoch ohne Karte. Was fehlt mir? Verwenden von androidx.car.app:app:1.7.0-beta03. Ich habe sowohl im Emulator (dhu) als auch im Auto getestet.

Code: Select all

package se.ndssoft.autoglucose
import android.content.Intent
import androidx.car.app.CarAppService
import androidx.car.app.CarContext
import androidx.car.app.Screen
import androidx.car.app.Session
import androidx.car.app.annotations.ExperimentalCarApi
import androidx.car.app.model.Action
import androidx.car.app.model.ActionStrip
import androidx.car.app.model.Header
import androidx.car.app.model.Pane
import androidx.car.app.model.PaneTemplate
import androidx.car.app.model.Row
import androidx.car.app.model.Template
import androidx.car.app.navigation.model.MapController
import androidx.car.app.navigation.model.MapWithContentTemplate
import androidx.car.app.validation.HostValidator

class CarHomeService : CarAppService() {
override fun createHostValidator(): HostValidator {
return HostValidator.ALLOW_ALL_HOSTS_VALIDATOR
}
override fun onCreateSession(): Session {
return CarHomeSession()
}
}

class CarHomeSession : Session() {
override fun onCreateScreen(intent: Intent): Screen {
return CarHomeScreen(carContext)
}
}

class CarHomeScreen(carContext: CarContext) : Screen(carContext)
override fun onGetTemplate(): Template {
val myPane = Pane.Builder().addRow(Row.Builder().setTitle("Row 1").build()).build()
val myHeader = Header.Builder().setTitle("Header").build()
val myPaneTemplate = PaneTemplate.Builder(myPane)
.setHeader(myHeader)
.build()
val myActionStrip = ActionStrip.Builder()
.addAction(Action.APP_ICON)
.addAction(Action.PAN)
.addAction(Action.BACK)
.build()
val myMapController = MapController.Builder()
.setMapActionStrip(myActionStrip)
.build()
val myMwcTemplate = MapWithContentTemplate.Builder()
.setContentTemplate(myPaneTemplate)
.setMapController(myMapController)
.build()
return myMwcTemplate
}
}
Hier ist das Manifest:

Code: Select all


































Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post