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:
parent
f5d04f2e59
commit
02c853c3b1
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue