diff options
author | ByteHamster <info@bytehamster.com> | 2020-05-04 22:54:53 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-05-04 22:54:53 +0200 |
commit | 63b3ac8e04ae113e84504d68e745cc6095ad6618 (patch) | |
tree | 459d8f04c8d54caa779d4d77d1ffea12689edb0f | |
parent | b233f4dcb7273a5f39474c1d1cea3c017f5ba500 (diff) | |
download | AntennaPod-63b3ac8e04ae113e84504d68e745cc6095ad6618.zip |
Make subscriptions view more consistent when showing non-square images
-rw-r--r-- | app/src/main/res/layout/feeditemlist_item.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/layout/subscription_item.xml | 4 | ||||
-rw-r--r-- | core/src/main/res/values/colors.xml | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/app/src/main/res/layout/feeditemlist_item.xml b/app/src/main/res/layout/feeditemlist_item.xml index 62ce30788..5a7ba4754 100644 --- a/app/src/main/res/layout/feeditemlist_item.xml +++ b/app/src/main/res/layout/feeditemlist_item.xml @@ -42,7 +42,7 @@ android:layout_marginRight="@dimen/listitem_threeline_textleftpadding" android:layout_marginEnd="@dimen/listitem_threeline_textleftpadding" android:id="@+id/coverHolder" - app:cardBackgroundColor="#33777777" + app:cardBackgroundColor="@color/non_square_icon_background" app:cardCornerRadius="4dp" app:cardElevation="0dp"> diff --git a/app/src/main/res/layout/subscription_item.xml b/app/src/main/res/layout/subscription_item.xml index a01b6d070..29f94a7e6 100644 --- a/app/src/main/res/layout/subscription_item.xml +++ b/app/src/main/res/layout/subscription_item.xml @@ -5,13 +5,15 @@ xmlns:tools="http://schemas.android.com/tools" xmlns:squareImageView="http://schemas.android.com/apk/de.danoeh.antennapod" android:layout_width="match_parent" - android:layout_height="match_parent"> + android:layout_height="match_parent" + android:foreground="?attr/selectableItemBackground"> <de.danoeh.antennapod.view.SquareImageView android:id="@+id/imgvCover" android:layout_width="fill_parent" android:layout_height="fill_parent" android:scaleType="fitCenter" + android:background="@color/non_square_icon_background" tools:src="@mipmap/ic_launcher_round" squareImageView:direction="width"/> diff --git a/core/src/main/res/values/colors.xml b/core/src/main/res/values/colors.xml index c553f2e14..cc04db2dd 100644 --- a/core/src/main/res/values/colors.xml +++ b/core/src/main/res/values/colors.xml @@ -17,6 +17,7 @@ <color name="highlight_light">#DDDDDD</color> <color name="highlight_dark">#414141</color> <color name="highlight_trueblack">#414141</color> + <color name="non_square_icon_background">#22777777</color> <color name="accent_light">#0078C2</color> <color name="accent_dark">#5C9DFF</color> |