Do paddings for the icon and not the whole applist item

This commit is contained in:
Daniel Martí 2014-01-01 17:09:01 +01:00
parent 214c920afd
commit e302baa340
2 changed files with 8 additions and 8 deletions

View File

@ -3,24 +3,22 @@
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="6dp"
android:paddingBottom="6dp"
android:baselineAligned="false" >
<!-- Actual icon size is dependent on preferences and set in
AppListAdapater.java:layoutIcon() -->
<ImageView android:id="@+id/icon"
android:scaleType="fitCenter"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_marginLeft="8dp"
android:layout_width="64dp"
android:layout_height="64dp"
android:padding="8dp"
android:layout_centerVertical="true" />
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingLeft="8dp"
android:paddingLeft="3dp"
android:paddingRight="8dp"
android:paddingBottom="3dp"
android:layout_toRightOf="@id/icon"

View File

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