DialogUtil icon indicating copy to clipboard operation
DialogUtil copied to clipboard

common used dialog with material style ( in support v7),ios style,get top activity automatically, invoke everywhere (any thread , any window)

Results 24 DialogUtil issues
Sort by recently updated
recently updated
newest added

正常show以后,用手指下滑,这个弹窗会消失——问题来了:当再次show的时候,就不再显示了(但是界面会有遮罩,只是弹窗不显示); 重新进界面则可以显示(provinceDialog重新创建了实例),但假设我不进行下滑把弹窗弄没,而是按返回键,则没有这个bug的 代码如下: ` if (provinceDialog == null) { int columnsNum = 3; List datas = new ArrayList(); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"1")); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"222")); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"333333")); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"444")); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"55")); datas.add(new BottomSheetBean(R.mipmap.ic_launcher,"666"));...

bug

在activity的button点击事件中,弹出提示的dialog StyledDialog.buildLoading("加载中...").show(); 的时候会偶发性的崩溃:java.lang.IllegalArgumentException: View not attached to window manager

bug