2011-05-07 13:12:58 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-06 13:18:18 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="fill_parent"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-02-16 11:32:15 +01:00
|
|
|
android:background="?attr/expandable_list_item_background"
|
2015-02-09 13:43:37 +01:00
|
|
|
android:minHeight="@dimen/list_item_height"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:orientation="horizontal"
|
2015-02-18 16:02:44 +01:00
|
|
|
android:paddingLeft="@dimen/list_content_padding">
|
2015-02-06 13:18:18 +01:00
|
|
|
|
2015-02-16 11:32:15 +01:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/check_local_index"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-02-16 11:32:15 +01:00
|
|
|
android:focusable="false"
|
2015-02-16 13:43:44 +01:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginRight="@dimen/local_index_check_right_margin"
|
2015-02-23 15:51:24 +01:00
|
|
|
android:layout_marginTop="@dimen/favorites_icon_top_margin"/>
|
2015-02-16 13:43:44 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2015-02-28 14:27:31 +01:00
|
|
|
android:src="@drawable/ic_gpx_track"
|
2015-02-16 13:43:44 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="@dimen/favorites_icon_right_margin"
|
2015-02-19 17:41:38 +01:00
|
|
|
android:layout_marginTop="@dimen/favorites_icon_top_margin"
|
|
|
|
android:focusable="false"/>
|
2015-02-16 11:32:15 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2015-02-16 11:32:15 +01:00
|
|
|
android:layout_weight="1"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2015-02-16 11:32:15 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/local_index_name"
|
|
|
|
style="@style/ListText.Small"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="@string/app_version"/>
|
2015-02-06 13:18:18 +01:00
|
|
|
|
|
|
|
|
2015-02-16 11:32:15 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2015-02-06 13:18:18 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-02-16 11:32:15 +01:00
|
|
|
android:id="@+id/local_index_size"
|
|
|
|
android:layout_width="wrap_content"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:layout_height="wrap_content"
|
2015-02-17 16:56:57 +01:00
|
|
|
android:layout_marginRight="7dp"
|
2015-02-16 11:32:15 +01:00
|
|
|
tools:text="@string/app_version"/>
|
2015-02-06 13:18:18 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-02-16 11:32:15 +01:00
|
|
|
android:id="@+id/local_index_descr"
|
2015-02-06 13:18:18 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-02-16 11:32:15 +01:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="25"
|
|
|
|
tools:text="@string/app_mode_aircraft"/>
|
2015-02-06 13:18:18 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2015-02-16 11:32:15 +01:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/options"
|
2015-02-17 16:56:57 +01:00
|
|
|
android:layout_width="@dimen/list_item_height"
|
|
|
|
android:layout_height="@dimen/list_item_height"
|
2015-02-18 16:02:44 +01:00
|
|
|
android:background="?attr/options_button_background"
|
2015-02-16 11:32:15 +01:00
|
|
|
android:focusable="false"
|
|
|
|
android:src="?attr/list_settings_icon"/>
|
2013-07-12 02:40:43 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|