Waiting Dialog 做一个透明的ProgressDialog等待框。


在values/styles.xml添加自定义style

 

Java代码   收藏代码
  1. "TRANSDIALOG" parent="@android:style/Theme.Dialog">  
  2.     "android:backgroundDimEnabled">false  
  3.     "android:windowNoTitle">true  
  4.     "android:windowFrame">@null  
  5.     "android:windowIsFloating">true  
  6.     "android:windowIsTranslucent">true  
  7.     "android:background">@null  
  8.     "android:windowBackground">@null  
  9.   

 

在color.xml添加透明颜色

 

Java代码   收藏代码
  1. "transparent">#0000  
 

 

在layout添加布局文件trans_dialog.xml

 

Java代码   收藏代码
  1. "1.0" encoding="utf-8"?>  
  2. "http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="wrap_content"  
  4.     android:layout_height="wrap_content"/>  

 

最后显示出来

 

Java代码   收藏代码
  1. Dialog waitDialog = new Dialog(this, R.style.TRANSDIALOG);  
  2.                 waitDialog.setContentView(R.layout.trans_dialog);  
  3.                 waitDialog.getWindow().setBackgroundDrawableResource(R.color.transparent);  
  4.                 waitDialog.show();  

 

收工!其他dialog布局可以此去修改

你可能感兴趣的:(Android)