Tune Dashboard layouts following UX spec - part 3

- remove this ugly 12dp at the bottom of the Dashboard and
use 1dp instead

See bug: #15384992 Setting Dashboard - padding updates

Change-Id: I07695b2084a389552fb8a0e89663304c0c29cf58
This commit is contained in:
Fabrice Di Meglio
2014-06-06 12:21:45 -07:00
parent 3d35ec7292
commit b76de1d4fa
2 changed files with 2 additions and 1 deletions

View File

@@ -20,6 +20,7 @@
android:layout_height="match_parent"
android:paddingStart="@dimen/dashboard_padding_start"
android:paddingEnd="@dimen/dashboard_padding_end"
android:paddingBottom="@dimen/dashboard_padding_bottom"
android:scrollbarStyle="outsideOverlay"
android:background="@color/dashboard_background_color">
@@ -27,7 +28,6 @@
android:id="@+id/dashboard_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="12dp"
android:layout_gravity="center_horizontal"
android:orientation="vertical"
/>

View File

@@ -99,6 +99,7 @@
<!-- Dashboard padding in its container -->
<dimen name="dashboard_padding_start">1dp</dimen>
<dimen name="dashboard_padding_end">1dp</dimen>
<dimen name="dashboard_padding_bottom">1dp</dimen>
<!-- Dashboard category title layout height -->
<dimen name="dashboard_category_title_height">48dp</dimen>