diff options
author | H. Lehmann <ByteHamster@users.noreply.github.com> | 2019-01-23 15:41:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 15:41:51 +0100 |
commit | 0474717ba1c0cf5e72738390fb24392def351692 (patch) | |
tree | 867546fb101f7dc81d1efbe58f3766a507d7677b | |
parent | de7a05f77c93b10be0dbb5e8b1dcf2b6cb431efd (diff) | |
parent | e0d6d35ca5cbfddf91dfb1e2bdda28df5d514f38 (diff) | |
download | AntennaPod-0474717ba1c0cf5e72738390fb24392def351692.zip |
Merge pull request #3005 from pachecosf/fix-ripple-effect
Reimplemented the ripple effect when choosing a nav item
-rw-r--r-- | app/src/main/res/layout/nav_feedlistitem.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout/nav_listitem.xml | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/app/src/main/res/layout/nav_feedlistitem.xml b/app/src/main/res/layout/nav_feedlistitem.xml index 9f19157fc..73d07bc57 100644 --- a/app/src/main/res/layout/nav_feedlistitem.xml +++ b/app/src/main/res/layout/nav_feedlistitem.xml @@ -5,7 +5,8 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="@dimen/listitem_iconwithtext_height" - tools:background="@android:color/darker_gray"> + tools:background="@android:color/darker_gray" + android:foreground="?attr/selectableItemBackground"> <ImageView android:id="@+id/imgvCover" diff --git a/app/src/main/res/layout/nav_listitem.xml b/app/src/main/res/layout/nav_listitem.xml index c140533e6..1332b5263 100644 --- a/app/src/main/res/layout/nav_listitem.xml +++ b/app/src/main/res/layout/nav_listitem.xml @@ -5,6 +5,7 @@ android:orientation="vertical" android:layout_width="match_parent" android:layout_height="@dimen/listitem_iconwithtext_height" + android:foreground="?attr/selectableItemBackground" tools:background="@android:color/darker_gray"> <ImageView |