summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-04-10 18:47:15 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-10 18:47:16 +0000
commitf7a478d2e65956d819c8126afa3a68646b2508cb (patch)
treea11f62c1c250a112fe61105a4ac65d3540668447 /res
parentdb31914c54f90df78af387a8e8849bca4a98510d (diff)
parent492cd7371c6d8fddc4de85887a4ed9a89d602767 (diff)
Merge "Replace ListView with RecyclerView in call log."
Diffstat (limited to 'res')
-rw-r--r--res/layout/call_log_fragment.xml13
1 files changed, 3 insertions, 10 deletions
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml
index 74c630959..c126b778b 100644
--- a/res/layout/call_log_fragment.xml
+++ b/res/layout/call_log_fragment.xml
@@ -61,18 +61,11 @@
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
- <!-- clipChildren=false is required to ensure shadows drawn
- within list items aren't clipped by the list item bounds. -->
- <ListView android:id="@android:id/list"
+
+ <android.support.v7.widget.RecyclerView android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:fadingEdge="none"
- android:scrollbarStyle="outsideOverlay"
- android:background="@color/background_dialer_list_items"
- android:divider="@null"
- android:nestedScrollingEnabled="true"
- android:clipChildren="false"
- />
+ android:background="@color/background_dialer_list_items" />
<include
android:id="@+id/empty_list_view"