2012-05-22 20:50:19 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-15 17:01:27 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-04-14 21:15:45 +02:00
|
|
|
android:orientation="vertical" >
|
2012-06-15 17:01:27 +02:00
|
|
|
|
2013-04-14 21:15:45 +02:00
|
|
|
<LinearLayout
|
2013-07-12 02:40:43 +02:00
|
|
|
android:background="?attr/expandable_category_color"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:paddingBottom="3dp"
|
2013-04-14 21:15:45 +02:00
|
|
|
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"
|
2013-05-09 19:24:30 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
2013-04-14 21:15:45 +02:00
|
|
|
</LinearLayout>
|
2012-06-15 17:01:27 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/plugin_name"
|
2012-06-18 15:12:12 +02:00
|
|
|
android:layout_width="fill_parent"
|
2013-05-09 19:24:30 +02:00
|
|
|
android:layout_height="wrap_content"
|
2013-07-12 02:40:43 +02:00
|
|
|
android:gravity="top"
|
2012-06-15 17:01:27 +02:00
|
|
|
android:textStyle="bold"
|
2013-05-09 19:24:30 +02:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2013-07-12 02:40:43 +02:00
|
|
|
style="@style/ListText" android:text="@string/extra_settings"
|
|
|
|
android:paddingRight="10dp">
|
2012-06-15 17:01:27 +02:00
|
|
|
</TextView>
|
2013-04-14 21:15:45 +02:00
|
|
|
</LinearLayout>
|
2012-06-15 17:01:27 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/plugin_descr"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-07-08 13:43:08 +02:00
|
|
|
android:visibility="gone"
|
2012-06-15 17:01:27 +02:00
|
|
|
android:maxLines="7"
|
|
|
|
android:text="@string/osmand_extra_settings_description"
|
2013-05-09 19:24:30 +02:00
|
|
|
android:textColor="?android:textColorSecondary"
|
2013-07-12 02:40:43 +02:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingTop="5dp"
|
|
|
|
android:paddingBottom="5dp">
|
2012-06-15 17:01:27 +02:00
|
|
|
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
</LinearLayout>
|