Commit ecf2edbc authored by Kyle Milka's avatar Kyle Milka Committed by Commit Bot

[SharingHub] Add padding to end of rows

Bug: 1108469
Change-Id: I4f13331c38cf836134072ed533d9e821e2af6f84
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2321219Reviewed-by: default avatarMatthew Jones <mdjones@chromium.org>
Commit-Queue: Kyle Milka <kmilka@chromium.org>
Cr-Commit-Position: refs/heads/master@{#792044}
parent e847a0a0
...@@ -11,9 +11,11 @@ ...@@ -11,9 +11,11 @@
android:orientation="vertical"> android:orientation="vertical">
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/share_sheet_chrome_apps" android:id="@+id/share_sheet_chrome_apps"
android:clipToPadding="false"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="113dp" android:layout_height="113dp"
android:minHeight="@dimen/min_touch_target_size" android:minHeight="@dimen/min_touch_target_size"
android:paddingEnd="16dp"
android:visibility="gone" /> android:visibility="gone" />
<View <View
android:id="@+id/share_sheet_divider" android:id="@+id/share_sheet_divider"
...@@ -25,8 +27,10 @@ ...@@ -25,8 +27,10 @@
android:visibility="gone" /> android:visibility="gone" />
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/share_sheet_other_apps" android:id="@+id/share_sheet_other_apps"
android:clipToPadding="false"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="113dp" android:layout_height="113dp"
android:minHeight="@dimen/min_touch_target_size" android:minHeight="@dimen/min_touch_target_size"
android:orientation="horizontal" /> android:orientation="horizontal"
android:paddingEnd="16dp" />
</LinearLayout> </LinearLayout>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment