228 questions
0
votes
1
answer
59
views
Android automotive radio handling [closed]
I want to develop a really simple app to control the radio using Android Automotive OS. I created a proof of concept (POC), but from what I found online (there isn’t much Android Automotive ...
1
vote
1
answer
44
views
Android Auto MediaSession Queue Button Customization - Is it possible to modify appearance or behavior?
I'm working on an Android music streaming app with Android Auto integration. After extensive research through our codebase and Android documentation, I need to confirm whether the queue button in ...
2
votes
0
answers
188
views
How to change the position of the Activity Chooser Dialog?
I'm working on an Android Automotive OS system build, and I want to center the Activity Chooser dialog position (i.e. ResolverActivity) on the screen using a theme overlay only — no Java code ...
0
votes
0
answers
51
views
In Android Automotive emulator how to launch the app on tap event of a notification?
On tap of a notification it does not go into the app on an Android Automotive emulator. But the same works on an Android Automotive device. Is there a way to make this work on the emulator?
I am able ...
0
votes
0
answers
79
views
Why are two instances of SystemUI running on an Android device when device locked?
After device boot I can see two instance of systemui one for user 0 and one for user 10
console:/ # ps -A | grep systemui
u10_a98 3747 515 15378516 171208 do_epoll_wait 0 S com.android....
0
votes
1
answer
43
views
Do Android allow extending or modifying the CTS test to match OEM specific need?
I am wondering whether Android allows OEM to extend or modify the CTS tests to match the device specific changes.
If allowed, do we have documentation on the guideline.
If not allowed, what does ...
1
vote
1
answer
117
views
Does ConnectivityManager.getActiveNetwork() return the network used by the current app or the system-wide default?
I'm trying to understand the exact behavior of ConnectivityManager.getActiveNetwork() in the context of Per-Application Network Selection (PANS) in Android Automotive.
The official documentation says: ...
0
votes
1
answer
133
views
How to add a new App in an Android Automotive build?
I'm running an Android Automotive 15 on a Raspberry Pi 4b, and trying to get an own app into the AAOS image of the Raspberry PI. The app is just to read some sensors and display current values.
In my ...
0
votes
1
answer
597
views
How to add custom VHAL properties in Android Automotive 14
I have added in the below following path:
hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/DefaultConfig.h
const ConfigDeclaration kVehicleProperties[]{
{
.config = {
.prop = ...
1
vote
2
answers
116
views
how to show images in high quality in android auto in a row
Below is the code I'm using, but it's causing the image to blur. I've tried both XML and PNG formats—XML appears blurry, while the PNG image looks pixelated and broken.
private fun getIcon(type: ...
0
votes
0
answers
53
views
Android Automotive: Update UI Screen after CoroutineScope HTTP Request
In this example, I just want to get the HTML from Google and show it in my Screen. I have a loading screen, until the response arrived, so the Screen can be updated. The problem is, that the UI Screen ...
0
votes
0
answers
78
views
How to remove transient displaying in top of status bar in android?
In car, there is an overlay displaying on top of status bar for applications in full screen when swipe down on top of status bar. Again when swipe down, notification panel is displaying.
But I want to ...
0
votes
1
answer
190
views
Google maps platform navigation SDK and Android Automotive (AAOS)
followMyLocation in GoogleMap requires implementation of NavigationApi.NavigatorListener interface. When at first run on an Android mobile device this interface opens automoatically a dialog asking to ...
1
vote
1
answer
228
views
Google Map is Blank in Android Auto
I want to create an app that displays the route from my current location to a destination using an in-app map, rather than opening an external maps application automatically.
Using NavigationTemplate
...
0
votes
1
answer
113
views
How to add custom markers in PlaceListMapTemplate in kotlin in android auto
im trying to add custom marker in this template but I couldn't can someone help me with this
override fun onGetTemplate(): Template {
val itemListBuilder = ItemList.Builder().setNoItemsMessage(...
