2016-08-28 16:03:27 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-28 12:44:25 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-08-28 16:03:27 +00:00
|
|
|
android:orientation="vertical"
|
2016-08-28 12:44:25 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment">
|
2016-08-28 16:03:27 +00:00
|
|
|
<TextView android:id="@+id/wiki_current_location"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Location:"/>
|
2016-08-28 12:44:25 +00:00
|
|
|
|
2016-09-01 17:26:06 +00:00
|
|
|
<ListView android:id="@+id/wiki_places"
|
|
|
|
android:layout_width="match_parent"
|
2016-08-28 16:03:27 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
</ListView>
|
|
|
|
|
|
|
|
</LinearLayout>
|