diff options
author | ByteHamster <info@bytehamster.com> | 2019-08-28 19:58:19 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-08-28 19:58:23 +0200 |
commit | caf6f097a71d45354e7b71684a795a4f192fdce7 (patch) | |
tree | 6e0c15747b18e151efa7fbe2bd7ce05f9930260e /app | |
parent | 44c60620a6e9307e503a5ffcd85c59432b2f22cc (diff) | |
download | AntennaPod-caf6f097a71d45354e7b71684a795a4f192fdce7.zip |
Fixed crash on Android 4.3
Apparently, applying `android:attr/textColorPrimary` to a TextView
works, while using it to tint an ImageView makes the app crash.
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/res/layout/addfeed.xml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/src/main/res/layout/addfeed.xml b/app/src/main/res/layout/addfeed.xml index a9cf31cf2..ef8251a06 100644 --- a/app/src/main/res/layout/addfeed.xml +++ b/app/src/main/res/layout/addfeed.xml @@ -132,8 +132,7 @@ android:contentDescription="@string/advanced_search" app:srcCompat="?attr/action_search" android:scaleType="center" - android:layout_marginBottom="4dp" - android:tint="?android:attr/textColorPrimary"/> + android:layout_marginBottom="4dp"/> <TextView android:layout_width="match_parent" @@ -158,8 +157,7 @@ android:contentDescription="@string/opml_import_label" app:srcCompat="?attr/av_download" android:scaleType="center" - android:layout_marginBottom="4dp" - android:tint="?android:attr/textColorPrimary"/> + android:layout_marginBottom="4dp"/> <TextView android:layout_width="match_parent" |