diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-11-15 08:40:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-15 13:10:06 +0530 |
commit | 02c853c3b1124d8d37c357f7040abd579c51bf8a (patch) | |
tree | 912e984a4bd281c951592ee255291f6a9feab2cb /app | |
parent | f5d04f2e596625b2980350d8078177e5f79020f4 (diff) |
Fix Autofill dataset icon tint (#1207)
ImageViews in RemoteViews require tint to be specified with the android:
prefix, the lint thinks otherwise.
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 e13d1688..f420a323 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="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 |