summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorJon Miranda <jonmiranda@google.com>2016-09-16 12:38:09 -0700
committerJon Miranda <jonmiranda@google.com>2016-09-19 13:08:43 -0700
commit0ef81fdc2265c764d6ebd57cf44d4a0bd15132b7 (patch)
treef7a4ceb5478b2cafec80d7edd2785f38c0681ace /res
parent1cc48e1d0c0bd30bc59cc37c4d49ee78b01424f0 (diff)
downloadandroid_packages_apps_Trebuchet-0ef81fdc2265c764d6ebd57cf44d4a0bd15132b7.tar.gz
android_packages_apps_Trebuchet-0ef81fdc2265c764d6ebd57cf44d4a0bd15132b7.tar.bz2
android_packages_apps_Trebuchet-0ef81fdc2265c764d6ebd57cf44d4a0bd15132b7.zip
Uses a TransformingTouchDelegate to extend touch target for widgets list.
The widget row contents were being clipped, which made it seem like the horizontal scroll was broken. Bug: 30023607 Change-Id: I00b0c334bbb0faf166d4cd168392cc494ed732e0
Diffstat (limited to 'res')
-rw-r--r--res/layout/widgets_list_row_view.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/layout/widgets_list_row_view.xml b/res/layout/widgets_list_row_view.xml
index 4687b3891..30a34d4f9 100644
--- a/res/layout/widgets_list_row_view.xml
+++ b/res/layout/widgets_list_row_view.xml
@@ -59,8 +59,8 @@
android:id="@+id/widgets_cell_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/widget_row_padding"
- android:layout_marginLeft="@dimen/widget_row_padding"
+ android:paddingStart="@dimen/widget_row_padding"
+ android:paddingEnd="0dp"
android:orientation="horizontal"
android:divider="@drawable/widgets_row_divider"
android:showDividers="middle"/>