81 lines
No EOL
2.9 KiB
XML
81 lines
No EOL
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/actionModeBackground"
|
|
android:minHeight="@dimen/toolbar_height"
|
|
android:padding="0dp"
|
|
app:contentInsetLeft="0dp"
|
|
app:contentInsetStart="0dp"
|
|
app:contentInsetRight="0dp"
|
|
app:contentInsetEnd="0dp"
|
|
app:theme="@style/ThemeOverlay.AppCompat.ActionBar">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="@dimen/toolbar_height"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageButton
|
|
android:id="@+id/close_button"
|
|
style="@style/Widget.AppCompat.Toolbar.Button.Navigation"
|
|
android:layout_width="@dimen/toolbar_height"
|
|
android:layout_height="@dimen/toolbar_height"
|
|
android:contentDescription="@string/access_shared_string_navigate_up"
|
|
app:srcCompat="@drawable/ic_arrow_back" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/toolbar_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:maxLines="2"
|
|
android:textColor="?attr/app_bar_primary_item_color"
|
|
android:textSize="@dimen/dialog_header_text_size"
|
|
app:typeface="@string/font_roboto_medium"
|
|
tools:text="@string/routing_settings_2" />
|
|
|
|
<FrameLayout
|
|
android:id="@+id/action_button"
|
|
android:layout_gravity="center"
|
|
android:layout_width="@dimen/acceptable_touch_radius"
|
|
android:layout_height="@dimen/acceptable_touch_radius">
|
|
|
|
<androidx.appcompat.widget.AppCompatImageButton
|
|
android:id="@+id/action_button_icon"
|
|
style="@style/Widget.AppCompat.Toolbar.Button.Navigation"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="@dimen/standard_icon_size"
|
|
android:layout_marginStart="@dimen/content_padding"
|
|
android:layout_marginLeft="@dimen/content_padding"
|
|
android:layout_marginEnd="@dimen/content_padding"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:contentDescription="@string/access_shared_string_navigate_up"
|
|
android:duplicateParentState="true"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:layout_gravity="center"
|
|
android:scaleType="fitCenter"
|
|
app:srcCompat="@drawable/ic_action_info_dark" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/preference_toolbar_switch" />
|
|
|
|
</LinearLayout>
|
|
|
|
</androidx.appcompat.widget.Toolbar> |