Increased touch area for history detail/delete button

This commit is contained in:
Sylvain Berfini 2013-04-08 11:56:04 +02:00
parent 055a513fd3
commit 1baab5b590

View file

@ -2,8 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:background="@drawable/list_selector"
android:gravity="center_vertical"
android:orientation="vertical" >
<TextView
@ -47,28 +47,28 @@
android:textColor="@android:color/black"
android:layout_marginLeft="10dp" />
<ImageView
android:contentDescription="@string/content_description_detail"
<ImageView
android:id="@+id/detail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_height="match_parent"
android:layout_weight="0.9"
android:src="@drawable/list_detail"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp" />
android:adjustViewBounds="true"
android:contentDescription="@string/content_description_detail"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:src="@drawable/list_detail" />
<ImageView
android:contentDescription="@string/content_description_delete"
<ImageView
android:id="@+id/delete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_weight="0.9"
android:visibility="gone"
android:adjustViewBounds="true"
android:contentDescription="@string/content_description_delete"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:src="@drawable/list_delete"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp" />
android:visibility="gone" />
</LinearLayout>