一。创建activity 把主题设置为
<!--dialogActivity--> <activity android:name=".ui.DiaActivity" android:screenOrientation="portrait" android:theme="@android:style/Theme.Dialog" > </activity>二。activity的布局文件
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#fff" android:orientation="vertical" > <Button android:id="@+id/bt1" android:layout_height="48dp" android:layout_width="250dp" android:textSize="16sp" android:background="@drawable/bt_back" android:text="下载" /> <View android:layout_height="1dp" android:layout_width="match_parent" android:background="#e6e6e6" /> <Button android:id="@+id/bt2" android:textSize="16sp" android:layout_height="48dp" android:layout_width="250dp" android:background="@drawable/bt_back" android:text="取消" /> </LinearLayout>三。隐藏标题栏
requestWindowFeature(Window.FEATURE_NO_TITLE); 记得放在setContentView前