OsmAnd/OsmAnd/res/layout/open_hours_list_item.xml

24 lines
No EOL
838 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/label"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="@dimen/default_list_text_size"/>
<ImageButton
android:id="@+id/remove"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_action_delete_dark"
android:contentDescription="@string/shared_string_delete"
android:paddingLeft="2dp"
android:paddingRight="2dp"
android:paddingTop="2dp" />
</LinearLayout>