2014-03-28 18:51:48 -04:00
|
|
|
<RelativeLayout 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:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
tools:context=".MainActivity" >
|
|
|
|
|
2014-04-13 23:32:39 -04:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/listLocations"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true" >
|
|
|
|
</ListView>
|
|
|
|
|
2014-03-28 18:51:48 -04:00
|
|
|
<TextView
|
2014-04-13 23:32:39 -04:00
|
|
|
android:id="@+id/txtNoLocations"
|
2014-03-28 18:51:48 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-13 23:32:39 -04:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:text="There are currently no locations available. Contacting the server to get them now..." />
|
2014-03-28 18:51:48 -04:00
|
|
|
|
|
|
|
</RelativeLayout>
|