| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@color/background_app"
- android:orientation="vertical"
- tools:ignore="Overdraw">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="10dp"
- android:background="@drawable/section"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/section_title"
- android:paddingBottom="4dp"
- android:paddingEnd="10dp"
- android:paddingLeft="20dp"
- android:paddingRight="10dp"
- android:paddingStart="20dp"
- android:paddingTop="4dp"
- android:text="@string/menu_location"
- android:textAppearance="?android:attr/textAppearanceLarge"
- android:textColor="@color/section_title"
- android:textStyle="bold"
- tools:layout_width="match_parent"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_margin="8dp"
- android:background="@drawable/entry"
- android:orientation="vertical"
- android:padding="7dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/home_section_location_text_0"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:textColor="@color/entry_title"
- android:textStyle="bold"/>
- <TextView
- android:id="@+id/tv_location_distance"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:text="@string/home_section_location_text_calculating"
- android:textAppearance="?android:attr/textAppearanceSmall"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_weight=".95"
- android:background="@drawable/map"
- android:padding="3dp">
- <org.osmdroid.views.MapView
- android:id="@+id/mapview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|