Dialog窗口方式的Activity

Dialog窗口形式的Activity只需在AndroidManifest.xml中对activity加入android:theme@android:style/Them

Dialog窗口形式的Activity
只需在AndroidManifest.xml中对activity加入android:theme="@android:style/Theme.Dialog"
例如:

<activity android:name="OtherActivity" android:label="@layout/other"       android:theme="@android:style/Theme.Dialog"></activity>