1 <LinearLayout 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 4 android:layout_width="fill_parent" 5 android:layout_height="wrap_content"> 6 7 <ProgressBar 8 android:id="@+id/progress_bar" 9 style="?android:attr/progressBarStyleHorizontal" 10 android:layout_width="fill_parent" 11 android:layout_height="wrap_content" 12 android:max="100" /> 13 14 <TextView 15 android:id="@+id/status_text" 16 android:layout_width="fill_parent" 17 android:layout_height="wrap_content" 18 android:maxLines="1" 19 android:paddingTop="1dip" 20 android:textAppearance="?android:attr/textAppearanceSmall" /> 21 22 </LinearLayout> 23