29 lines
No EOL
1 KiB
XML
29 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/LinearLayout1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="0dip"
|
|
android:paddingLeft="5dip"
|
|
android:paddingRight="5dip"
|
|
android:paddingTop="0dip"
|
|
android:weightSum="1" >
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:text="@string/layer_poi"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="@color/color_black" android:layout_weight="1"/>
|
|
|
|
|
|
<CheckBox
|
|
android:id="@+id/check_item"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:focusable="false"
|
|
android:button="@drawable/ic_btn_wocheckbox" />
|
|
|
|
</LinearLayout> |