diff options
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 |