diff options
author | Yorke Lee <yorkelee@google.com> | 2014-05-04 14:50:49 -0700 |
---|---|---|
committer | Yorke Lee <yorkelee@google.com> | 2014-05-12 14:35:01 -0700 |
commit | bd180af7f0b73b0dd79a7117fb0c14370ef4d12e (patch) | |
tree | 6d6732e36c4a7bd9801c5346d1c82a3877e2c0e0 /res | |
parent | 48d0e836fd506fbf12c93e3ac233588e967b08d6 (diff) |
Use new nested scrolling APIs
Bug: 14234101
Change-Id: Icb77f327e455fc9f0fb797b3f31d6f3467b2f358
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/call_log_fragment.xml | 2 | ||||
-rw-r--r-- | res/layout/phone_favorites_fragment.xml | 3 | ||||
-rw-r--r-- | res/layout/show_all_contacts_fragment.xml | 3 |
3 files changed, 5 insertions, 3 deletions
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml index 23c7b143c..b4714a333 100644 --- a/res/layout/call_log_fragment.xml +++ b/res/layout/call_log_fragment.xml @@ -67,7 +67,7 @@ android:fadingEdge="none" android:scrollbarStyle="outsideOverlay" android:divider="@null" - /> + android:nestedScrollingEnabled="true" /> <TextView android:id="@android:id/empty" android:layout_width="match_parent" android:layout_height="match_parent" diff --git a/res/layout/phone_favorites_fragment.xml b/res/layout/phone_favorites_fragment.xml index 76e5e9838..0b657df05 100644 --- a/res/layout/phone_favorites_fragment.xml +++ b/res/layout/phone_favorites_fragment.xml @@ -39,7 +39,8 @@ android:numColumns="@integer/contact_tile_column_count_in_favorites" android:clipToPadding="false" android:fadingEdge="none" - android:divider="@null" /> + android:divider="@null" + android:nestedScrollingEnabled="true" /> </FrameLayout> <include diff --git a/res/layout/show_all_contacts_fragment.xml b/res/layout/show_all_contacts_fragment.xml index ddc99e84b..6b89847a1 100644 --- a/res/layout/show_all_contacts_fragment.xml +++ b/res/layout/show_all_contacts_fragment.xml @@ -43,7 +43,8 @@ android:layout_marginStart="?attr/contact_browser_list_padding_left" android:layout_marginEnd="?attr/contact_browser_list_padding_right" android:fastScrollEnabled="true" - android:fadingEdge="none"/> + android:fadingEdge="none" + android:nestedScrollingEnabled="true" /> </FrameLayout> </LinearLayout> |