2010-07-06 08:19:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2010-07-06 08:19:15 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/label"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:textSize="@dimen/default_list_text_size"/>
|
2014-11-17 16:25:17 +01:00
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/remove"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-20 00:51:06 +01:00
|
|
|
android:background="@drawable/ic_action_delete_dark"
|
2015-03-08 16:57:38 +01:00
|
|
|
android:contentDescription="@string/shared_string_delete"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:paddingLeft="2dp"
|
|
|
|
android:paddingRight="2dp"
|
|
|
|
android:paddingTop="2dp" />
|
2010-07-06 08:19:15 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|