46 lines
No EOL
1.7 KiB
XML
46 lines
No EOL
1.7 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:id="@+id/toolbar_switch_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/list_background_color"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/selectable_item"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:minHeight="@dimen/toolbar_height">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/switchButtonText"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="@dimen/toolbar_height"
|
|
android:layout_marginLeft="@dimen/toolbar_height"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:letterSpacing="@dimen/title_letter_spacing"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
android:textColor="?attr/text_color_tab_active"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="@string/shared_string_off" />
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
android:id="@+id/switchWidget"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:background="@null"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |