Assigned
Status Update
Comments
da...@wetteronline.de <da...@wetteronline.de> #2
Hi samsadch,
In the AndroidX PDF library, the search view is animated using the
Without this, the callback might be consumed at an upper level, preventing it from being received by the PdfViewerFragment's container.
ko...@google.com <ko...@google.com> #3
Actually the search view is coming but the issue is that it is showing below the Keyboard
da...@wetteronline.de <da...@wetteronline.de> #4 Restricted
Restricted
Comment has been deleted.
Description
Devices/Android versions reproduced on: Pixel 6 / Pixel 7
Android Auto version reproduced on: 11.2.640434-release
## Description:
When using Adaptive App Icons the Icon is not shown on displays with a dpi value lower than 160. With dpi values 160 or higher the icon will be visible as expected.
We are using the following App Launcher Icon:
```xml
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="
<background android:drawable="@drawable/ic_launcher_background_round" />
<foreground android:drawable="@mipmap/ic_launcher_foreground" />
</adaptive-icon>
```
Android Manifest
```xml
<application
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
...
```
If we move both the adaptive icon as well as the `foreground` into the drawable folder it works. So it seems to be an issue with the combination of mipmap <-> drawable and Low DPI on Android Auto. So the following code works:
```xml
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="
<background android:drawable="@drawable/ic_launcher_background_round" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>
```
Android Manifest
```xml
<application
android:icon="@mipmap/ic_launcher"
android:roundIcon="@drawable/ic_launcher_round"
...
```
## How to reproduce:
- Launch Android Auto Emulator using the following settings:
``ìni
[general]
touch = true
resolution = 1280x720
dpi = 150
```