urban-explorer/app/src/main/res/layout/fragment_wiki_locations.xml

36 lines
1.4 KiB
XML
Raw Normal View History

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
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/wiki_search_radius"/>
<EditText android:id="@+id/wiki_search_radius"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
<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>
<Button android:id="@+id/wiki_fetch_places"
2016-08-28 12:44:25 +00:00
android:layout_width="match_parent"
2016-08-28 16:03:27 +00:00
android:layout_height="wrap_content"
android:text="Fetch wiki places in the neighbourhood"/>
2016-08-28 12:44:25 +00:00
2016-08-28 16:03:27 +00:00
</LinearLayout>