diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-11-15 08:40:06 +0100 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-12-21 20:17:09 +0530 |
commit | dcee2856136309f52756da7e8f85d5e0907d61b0 (patch) | |
tree | 03d02c9c8535d0b405d0f246a83556bf8c3f3004 /app | |
parent | da8ca8b46d5d842670c9400c9a55b181eceb10b2 (diff) |
Fix Autofill dataset icon tint (#1207)
ImageViews in RemoteViews require tint to be specified with the android:
prefix, the lint thinks otherwise.
(cherry picked from commit 02c853c3b1124d8d37c357f7040abd579c51bf8a)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/oreo_autofill_dataset.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/layout/oreo_autofill_dataset.xml b/app/src/main/res/layout/oreo_autofill_dataset.xml index 2e9f48b9..264075f0 100644 --- a/app/src/main/res/layout/oreo_autofill_dataset.xml +++ b/app/src/main/res/layout/oreo_autofill_dataset.xml @@ -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="match_parent" android:layout_height="match_parent" @@ -23,7 +22,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 |