1、普通的对话框
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="match_parent" 3 android:layout_height="match_parent" 4 android:gravity="center" 5 android:orientation="vertical" > 6 7 <ProgressBar 8 android:id="@+id/progressBar1" 9 style="?android:attr/progressBarStyleLarge" 10 android:layout_width="wrap_content" 11 android:layout_height="wrap_content" /> 12 13 </LinearLayout>