OsmAnd/OsmAnd/res/layout/waypoint_title.xml

60 lines
2.1 KiB
XML
Raw Normal View History

2014-10-26 16:30:46 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:layout_marginRight="3dp"
android:descendantFocusability="blocksDescendants">
2014-10-28 00:47:12 +01:00
<ImageView
android:id="@+id/back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginTop="8dp"
android:layout_gravity="center_vertical"
android:visibility="gone" />
2014-10-26 16:30:46 +01:00
<TextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:singleLine="true"
android:layout_gravity="center_vertical"
android:text="@string/waypoints"
android:ellipsize="end"
android:layout_weight="1"
android:layout_marginRight="8dp"
android:textSize="@dimen/default_list_text_size_large" />
2014-10-26 16:30:46 +01:00
<ImageButton
android:id="@+id/sort"
android:contentDescription="@string/access_sort"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp" />
<ImageButton
android:id="@+id/searchEditText"
android:contentDescription="@string/shared_string_edit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp" />
<ImageButton
android:id="@+id/all"
2015-04-10 00:15:50 +02:00
android:contentDescription="@string/shared_string_all"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:layout_marginRight="8dp" />
2014-10-26 16:30:46 +01:00
</LinearLayout>