46 lines
No EOL
1.7 KiB
XML
46 lines
No EOL
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:background="?attr/expandable_category_color"
|
|
android:paddingTop="6dp"
|
|
android:paddingBottom="3dp"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:paddingLeft="5dp"
|
|
>
|
|
<CheckBox android:id="@+id/check_item" android:focusable="false" android:gravity="top"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"/>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:id="@+id/plugin_name"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="top"
|
|
android:textStyle="bold"
|
|
android:textColor="?android:textColorPrimary"
|
|
style="@style/ListText" android:text="@string/extra_settings"
|
|
android:paddingRight="10dp">
|
|
</TextView>
|
|
</LinearLayout>
|
|
<TextView
|
|
android:id="@+id/plugin_descr"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:maxLines="7"
|
|
android:text="@string/osmand_extra_settings_description"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="14sp"
|
|
android:paddingRight="10dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp">
|
|
|
|
</TextView>
|
|
|
|
</LinearLayout> |