Fix Autofill dataset icon tint (#1207)

ImageViews in RemoteViews require tint to be specified with the android:
prefix, the lint thinks otherwise.
This commit is contained in:
Fabian Henneke 2020-11-15 08:40:06 +01:00 committed by GitHub
parent f5d04f2e59
commit 02c853c3b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -12,6 +12,7 @@ All notable changes to this project will be documented in this file.
- Cancelling the Autofill "Generate password" action now correctly returns you to the original app.
- If multiple username fields exist in the password, we now ensure the later ones are not dropped from extra content.
- Icons in Autofill suggestions are no longer black on almost black in dark mode.
### Changed

View file

@ -4,7 +4,6 @@
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
@ -26,7 +25,8 @@
android:adjustViewBounds="true"
android:maxWidth="20dp"
android:maxHeight="20dp"
app:tint="@color/secondary_color"
android:tint="@color/secondary_color"
tools:ignore="UseAppTint"
tools:src="@mipmap/ic_launcher" />
<LinearLayout