diff options
author | Christopher Baines <cbaines8@gmail.com> | 2012-01-24 23:21:55 +0000 |
---|---|---|
committer | Christopher Baines <cbaines8@gmail.com> | 2012-01-24 23:21:55 +0000 |
commit | de2979e0f22264ada8326833bfb39746e9bf78cc (patch) | |
tree | 1a4a9cc5753eb906693275d465895d3f8c53ec0b /res | |
parent | efb193d6fbea2423d03eebf30e2359a6612134c1 (diff) | |
download | southamptonuniversitymap-de2979e0f22264ada8326833bfb39746e9bf78cc.tar southamptonuniversitymap-de2979e0f22264ada8326833bfb39746e9bf78cc.tar.gz |
Implemented refresh in BusTimeActivity.
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/bustimes.xml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/res/layout/bustimes.xml b/res/layout/bustimes.xml index 1928c79..24200c6 100644 --- a/res/layout/bustimes.xml +++ b/res/layout/bustimes.xml @@ -112,17 +112,26 @@ android:text="" android:textAppearance="?android:attr/textAppearanceLarge" /> - <ProgressBar - android:id="@+id/busStopLoadBar" - style="?android:attr/progressBarStyleLarge" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> - <ListView android:id="@+id/busStopTimes" android:layout_width="fill_parent" android:layout_height="wrap_content" > </ListView> + + <LinearLayout + xmlns:android="http://schemas.android.com/apk/res/android" + android:id="@+id/centerLoadBar" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:gravity="center" + android:orientation="vertical" > + + <ProgressBar + android:id="@+id/busStopLoadBar" + style="?android:attr/progressBarStyleLarge" + android:layout_width="wrap_content" + android:layout_height="wrap_content" /> + </LinearLayout> </LinearLayout> </LinearLayout>
\ No newline at end of file |