diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2020-06-14 19:48:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-14 19:48:15 +0200 |
commit | e86231d6c94bdd70e379f892642502c2cdd82b09 (patch) | |
tree | 4b4cbe0751a414d66e72cf5e334093703bb9f2c9 /app/src/main | |
parent | f244a55933a9d693a56449da46ee115acd0b98d0 (diff) | |
parent | 8ee53e90234491b27e32f91c4fda88d30ef429d0 (diff) | |
download | AntennaPod-e86231d6c94bdd70e379f892642502c2cdd82b09.zip |
Merge pull request #4243 from ByteHamster/increase-cover-contrast
Increase contrast for missing cover images
Diffstat (limited to 'app/src/main')
-rw-r--r-- | app/src/main/res/layout/subscription_item.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/src/main/res/layout/subscription_item.xml b/app/src/main/res/layout/subscription_item.xml index 29f94a7e6..e0c821868 100644 --- a/app/src/main/res/layout/subscription_item.xml +++ b/app/src/main/res/layout/subscription_item.xml @@ -21,7 +21,7 @@ android:id="@+id/txtvTitle" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@color/light_gray" + android:background="@color/non_square_icon_background" android:layout_alignLeft="@+id/imgvCover" android:layout_alignRight="@+id/imgvCover" android:layout_alignStart="@+id/imgvCover" @@ -30,6 +30,7 @@ android:layout_alignBottom="@+id/imgvCover" android:ellipsize="end" android:gravity="center" + android:textColor="?android:attr/textColorPrimary" tools:text="@string/app_name" /> <jp.shts.android.library.TriangleLabelView |