84 lines
No EOL
3.2 KiB
XML
84 lines
No EOL
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginBottom="5dp"
|
|
android:layout_marginTop="5dp"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="48dp"
|
|
android:orientation="horizontal">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/ProgressBar"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginStart="4dp" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/header_text"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_weight="1"
|
|
android:ellipsize="end"
|
|
android:singleLine="true"
|
|
style="@style/DashboardSubHeader"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
android:layout_marginStart="@dimen/content_padding" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:layout_marginEnd="@dimen/content_padding">
|
|
|
|
<include layout="@layout/check_item_rel"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/text_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:ellipsize="end"
|
|
android:gravity="center_vertical"
|
|
android:maxLines="1"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:text="@string/shared_string_options"
|
|
android:visibility="gone"
|
|
osmand:textAllCapsCompat="true"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:textColor="?attr/color_dialog_buttons"
|
|
android:paddingStart="@dimen/content_padding"
|
|
android:paddingEnd="@dimen/content_padding" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/image_button"
|
|
android:contentDescription="@string/shared_string_more"
|
|
android:layout_width="48dp"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
osmand:srcCompat="@drawable/ic_overflow_menu_white"
|
|
android:visibility="gone"/>
|
|
|
|
<Button
|
|
android:id="@+id/header_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:text="@string/shared_string_clear"
|
|
android:visibility="gone"
|
|
android:paddingEnd="@dimen/content_padding"
|
|
android:paddingStart="@dimen/content_padding" />
|
|
|
|
</LinearLayout> |