SearchList : Add bottom padding to avoid last item getting truncated

https://gitlab.com/AuroraOSS/AuroraStore/issues/140
This commit is contained in:
Rahul Patel
2019-08-11 20:29:04 +05:30
parent 504d44e7d4
commit b37c8a9fa9

View File

@@ -60,8 +60,8 @@
android:id="@+id/chip_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:layout_marginBottom="@dimen/margin_xxsmall"
android:clipToPadding="false"
android:paddingStart="@dimen/margin_normal"
android:scrollbars="none">
@@ -79,6 +79,7 @@
android:clipToPadding="false"
android:overScrollMode="never"
android:paddingTop="@dimen/margin_small"
android:paddingBottom="@dimen/margin_bottom"
android:scrollbars="none"
android:splitMotionEvents="false"
tools:listitem="@layout/item_installed" />