59 lines
No EOL
2.1 KiB
XML
59 lines
No EOL
2.1 KiB
XML
<android.support.v7.widget.Toolbar 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:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
osmand:contentInsetLeft="0dp"
|
|
osmand:contentInsetStart="0dp"
|
|
osmand:theme="@style/ThemeOverlay.AppCompat.ActionBar">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_and_list_background_basic"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/card_and_list_background_basic"
|
|
android:gravity="center_vertical"
|
|
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"
|
|
android:src="@drawable/ic_action_mode_back"
|
|
android:tint="?attr/default_icon_color" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/toolbar_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:letterSpacing="@dimen/text_button_letter_spacing"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textSize="@dimen/dialog_header_text_size"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="@string/routing_settings_2" />
|
|
|
|
<include
|
|
layout="@layout/profile_button_small"
|
|
android:layout_width="@dimen/route_info_toolbar_button_size"
|
|
android:layout_height="@dimen/route_info_toolbar_button_size"
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
android:layout_marginRight="@dimen/content_padding_half" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/preference_toolbar_switch" />
|
|
|
|
</LinearLayout>
|
|
|
|
</android.support.v7.widget.Toolbar> |