Forgot to set the icon sizes back to normal

They got added +8 since we added paddings directly to the icon layout. Since
those paddings got removed, this has to be switched back too.
This commit is contained in:
Daniel Martí 2014-04-11 19:24:46 +02:00
parent 8ed76f47ee
commit 4db53deb42
2 changed files with 4 additions and 6 deletions

View File

@ -11,8 +11,8 @@
<ImageView
android:id="@+id/icon"
android:contentDescription="@string/app_icon"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_gravity="center_vertical"
android:scaleType="fitCenter"
/>

View File

@ -1,7 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--48dp with 8dp padding, 48+16=64-->
<dimen name="applist_icon_normal_size">56dp</dimen>
<!--32dp with 8dp padding, 32+16=48-->
<dimen name="applist_icon_compact_size">40dp</dimen>
<dimen name="applist_icon_normal_size">48dp</dimen>
<dimen name="applist_icon_compact_size">32dp</dimen>
</resources>