20 lines
774 B
XML
20 lines
774 B
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="pl.tpolgrabia.urbanexplorer.fragments.WikiLocationsFragment">
|
|
<TextView android:id="@+id/wiki_current_location"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Location:"/>
|
|
|
|
<ListView android:id="@+id/wiki_places"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1">
|
|
|
|
</ListView>
|
|
|
|
</LinearLayout>
|