66 lines
No EOL
2.6 KiB
XML
66 lines
No EOL
2.6 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="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/list_background_color">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/selectable_list_item"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
android:minHeight="@dimen/bottom_sheet_list_item_height"
|
|
android:orientation="horizontal"
|
|
android:layout_marginEnd="@dimen/content_padding_half"
|
|
android:layout_marginStart="@dimen/content_padding_half">
|
|
|
|
<ImageView
|
|
android:id="@android:id/icon"
|
|
android:layout_width="@dimen/standard_icon_size"
|
|
android:layout_height="@dimen/standard_icon_size"
|
|
android:layout_marginLeft="@dimen/content_padding_half"
|
|
android:layout_marginTop="@dimen/content_padding_small"
|
|
android:layout_marginRight="@dimen/content_padding_half"
|
|
tools:src="@drawable/ic_action_lock"
|
|
android:layout_marginEnd="@dimen/content_padding_half"
|
|
android:layout_marginStart="@dimen/content_padding_half" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/dialog_content_margin"
|
|
android:layout_marginLeft="@dimen/dialog_content_margin"
|
|
android:layout_marginTop="@dimen/content_padding_small"
|
|
android:layout_marginEnd="@dimen/content_padding_small"
|
|
android:layout_marginRight="@dimen/content_padding_small"
|
|
android:layout_marginBottom="@dimen/content_padding_small"
|
|
android:orientation="vertical">
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@android:id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textAppearance="@style/TextAppearance.ListItemTitle"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="@string/permission_is_required" />
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@android:id/summary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:letterSpacing="@dimen/description_letter_spacing"
|
|
android:maxLines="1"
|
|
android:paddingTop="@dimen/content_padding_small"
|
|
android:textColor="?attr/active_color_basic"
|
|
android:textSize="@dimen/default_desc_text_size"
|
|
osmand:typeface="@string/font_roboto_medium"
|
|
tools:text="@string/give_permission" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |