46 lines
No EOL
1.6 KiB
XML
46 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/button_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginEnd="@dimen/content_padding"
|
|
android:layout_marginRight="@dimen/content_padding"
|
|
android:minHeight="@dimen/bottom_sheet_list_item_height"
|
|
android:paddingLeft="@dimen/content_padding"
|
|
android:paddingRight="@dimen/content_padding"
|
|
tools:background="@drawable/rectangle_rounded_right">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_weight="1"
|
|
android:ellipsize="end"
|
|
android:letterSpacing="@dimen/title_letter_spacing"
|
|
android:maxLines="1"
|
|
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
|
android:textColor="?attr/active_color_basic"
|
|
app:typeface="@string/font_roboto_medium"
|
|
tools:text="Some Title" />
|
|
|
|
<android.support.v7.widget.SwitchCompat
|
|
android:id="@+id/compound_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:background="@null"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:focusableInTouchMode="false" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |