wrap every list item into a frame layout

- to make sure the Selector foreground works on every Android version
This commit is contained in:
tibbi 2016-07-14 21:17:01 +02:00
parent eda77a47e1
commit 96656689e4
1 changed files with 38 additions and 33 deletions

View File

@ -1,10 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/item_holder"
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foreground="@drawable/selector">
<RelativeLayout
android:id="@+id/item_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="@drawable/selector"
android:paddingRight="@dimen/activity_margin">
<ImageView
@ -39,3 +43,4 @@
android:textSize="@dimen/details_text_size"/>
</RelativeLayout>
</FrameLayout>