| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?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:orientation="vertical"
- android:layout_height="fill_parent"
- android:background="@color/background_app"
- tools:ignore="Overdraw">
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/section"
- android:layout_marginTop="2dp"
- android:layout_marginBottom="4dp"
- android:paddingTop="5dp">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Large"
- android:text="@string/menu_location"
- android:id="@+id/textView2"
- android:textStyle="bold"
- android:layout_marginLeft="10dp"
- android:textColor="@color/section_title"/>
- <LinearLayout
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/entry"
- android:padding="7dp">
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textAppearance="@android:style/TextAppearance.Medium"
- android:text="@string/home_section_location_text_0"
- android:id="@+id/textView3"
- />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textAppearance="?android:attr/textAppearanceSmall"
- android:id="@+id/tv_location_distance"
- android:text="@string/home_section_location_text_calculating"
- android:layout_margin="10dp"/>
- <com.google.android.gms.maps.MapView
- android:id="@+id/mapview"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:minHeight="150dp"
- android:layout_margin="7dp"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|