Android——Dialog
创建dialog实例: Dialog dialog = new Dialog(Context context,int theme); 一般大家都是想让Dialog显示自己的布局这里的theme写在style文件内具体内容如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 < style name = "dialog_tran" parent = "android:style/Theme.Dialog" > < item name = "android:windowFrame" >@null</ item > < item name = "android:windowNoTitle" >true</ item > < item name = "android:windowBackground" >@android:color/transparent</ item > < item name = "android:windowIsFloating" >true<...