diff options
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/app_list_item.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app/src/main/res/layout/app_list_item.xml b/app/src/main/res/layout/app_list_item.xml index 7df28cc6..1a6c6e9b 100644 --- a/app/src/main/res/layout/app_list_item.xml +++ b/app/src/main/res/layout/app_list_item.xml @@ -1,15 +1,16 @@ <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" - android:layout_height="match_parent" + android:layout_height="40dp" android:orientation="horizontal" android:paddingLeft="8dp" - android:paddingRight="8dp"> + android:paddingRight="8dp" + android:gravity="center_vertical"> <ImageView android:id="@android:id/icon1" - android:layout_width="48dp" - android:layout_height="48dp"/> + android:layout_width="24dp" + android:layout_height="24dp"/> <TextView android:id="@android:id/text1" xmlns:android="http://schemas.android.com/apk/res/android" |