2015-01-22 02:48:48 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/bkg1"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="0dp"
|
|
|
|
android:paddingLeft="0dp"
|
|
|
|
android:paddingRight="0dp"
|
|
|
|
android:paddingTop="0dp"
|
|
|
|
tools:context="fishrungames.bashgid.MapHolderFragment" >
|
2015-06-25 19:00:11 +00:00
|
|
|
|
|
|
|
<TextView
|
2015-07-02 22:36:06 +00:00
|
|
|
android:id="@+id/titleTextView"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_margin="@dimen/medium_margin"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:gravity="center_horizontal"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:text=""
|
|
|
|
android:textSize="@dimen/large_text_size"
|
2015-06-25 19:00:11 +00:00
|
|
|
android:textStyle="bold" />
|
2015-07-02 08:36:51 +00:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/spinner"
|
|
|
|
android:layout_width="match_parent"
|
2015-07-02 22:36:06 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="@dimen/medium_margin" />
|
2015-01-22 02:48:48 +00:00
|
|
|
|
|
|
|
<org.osmdroid.views.MapView
|
|
|
|
android:id="@+id/mapview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tilesource="Mapnik"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|