OsmAnd/OsmAnd/res/layout/plugins_list_item.xml
IreuN 5141f9f6da Reformating of the code.
This will not change in the layout, it's here just to better maintain
the code.
2014-11-17 16:25:37 +01:00

55 lines
No EOL
1.8 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:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="?attr/expandable_category_color"
android:paddingBottom="3dp"
android:paddingTop="6dp">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="5dp">
<CheckBox
android:id="@+id/check_item"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:gravity="top" />
</LinearLayout>
<TextView
android:id="@+id/plugin_name"
style="@style/ListText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="top"
android:paddingRight="10dp"
android:text="@string/extra_settings"
android:textColor="?android:textColorPrimary"
android:textStyle="bold" />
</LinearLayout>
<TextView
android:id="@+id/plugin_descr"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxLines="7"
android:paddingBottom="5dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="5dp"
android:text="@string/osmand_extra_settings_description"
android:textColor="?android:textColorSecondary"
android:textSize="14sp"
android:visibility="gone">
</TextView>
</LinearLayout>