53 lines
No EOL
2 KiB
XML
53 lines
No EOL
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout android:id="@+id/LinearLayout1"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<android.support.v7.widget.AppCompatImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="24dp"
|
|
android:gravity="center"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
<android.support.v7.widget.AppCompatTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="11dip"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginTop="11dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/layer_poi"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="@dimen/default_list_text_size"/>
|
|
|
|
<android.support.v7.widget.AppCompatImageView
|
|
android:id="@+id/icon_settings"
|
|
android:contentDescription="@string/shared_string_settings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:focusable="false"
|
|
android:gravity="center_vertical"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
<!-- android:button="@drawable/ic_btn_wocheckbox" -->
|
|
<android.support.v7.widget.AppCompatCheckBox
|
|
android:id="@+id/toggle_item"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginRight="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:focusable="false"
|
|
app:buttonTint="?attr/active_color_basic" />
|
|
|
|
</LinearLayout> |