60 lines
No EOL
2.1 KiB
XML
60 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:minHeight="48dp"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="@dimen/list_content_padding"
|
|
android:paddingRight="@dimen/list_content_padding">
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginRight="@dimen/list_content_padding"
|
|
android:src="@drawable/ic_action_gabout_dark" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginRight="8dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="8dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/header_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="Avoid selected roads"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
<TextView
|
|
android:id="@+id/description_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:text="Select roads you want to avoid during navigation"
|
|
android:textSize="@dimen/default_desc_text_size"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/check_item_rel"/>
|
|
|
|
<TextView
|
|
android:id="@+id/select_button"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="@string/shared_string_select"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
</LinearLayout> |