summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Benoit Lubek <bodlulu@gmail.com> 2013-08-08 16:06:35 +0200
committer Benoit Lubek <bodlulu@gmail.com> 2013-08-08 16:06:35 +0200
commitdc0445bbcfb33edaa354cbb1a5e1e6e94fca4b76 (patch)
tree79925571662e06c5c2f0875f0f611f33eaededb0
parente8acd367acb82bd80deed31467adcdd9ab83248b (diff)
Remove hard-coded DrawSelectorOnTop on ListFragment's default ListView.
When using the default layout of a ListFragment, the returned ListView has its DrawSelectorOnTop property hard-coded to false. There is no reason for this, as this property is themable. This change removes the hard-coded attribute. Change-Id: Idc90fd04680c19d3731b30d84764858a28783864 Signed-off-by: Benoit Lubek <bodlulu@gmail.com>
-rw-r--r--core/res/res/layout/list_content.xml3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/res/res/layout/list_content.xml b/core/res/res/layout/list_content.xml
index 14140322b7cd..45ade4d0c6d7 100644
--- a/core/res/res/layout/list_content.xml
+++ b/core/res/res/layout/list_content.xml
@@ -44,8 +44,7 @@
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:drawSelectorOnTop="false" />
+ android:layout_height="match_parent" />
<TextView android:id="@+android:id/internalEmpty"
android:layout_width="match_parent"
android:layout_height="match_parent"