2010-10-15 19:06:32 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-04-12 21:01:39 +00:00
|
|
|
<FrameLayout
|
2010-10-15 19:06:32 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-04-12 21:01:39 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
>
|
|
|
|
<com.google.android.maps.MapView
|
2010-10-15 19:06:32 +00:00
|
|
|
android:id="@+id/mapview"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:clickable="true"
|
2010-12-11 21:28:31 +00:00
|
|
|
android:apiKey="@apiKey@"
|
2010-10-15 19:06:32 +00:00
|
|
|
/>
|
2011-04-12 21:01:39 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/loading"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:padding="10sp"
|
|
|
|
android:textColor="#000"
|
2011-04-13 22:17:24 +00:00
|
|
|
android:shadowColor="#fff"
|
|
|
|
android:shadowRadius="3.0"
|
|
|
|
android:textSize="25sp"
|
2011-04-12 21:01:39 +00:00
|
|
|
android:text="@string/map_loading"
|
|
|
|
/>
|
|
|
|
</FrameLayout>
|