Showing Two Progressdialog Instead One
When I use samsung galaxy mini 4.4 I see two progressDialog(picture below). When I use another device - everething is okay if (progressDialog == null) { progressDialog = n
Solution 1:
I didn't found reason, but I found a way to avoid this. Need to create a dialog in the following manner:
newProgressDialog(newContextThemeWrapper(getActivity(), R.style.ProgressDialog));
R.style.ProgressDialog - your theme
Post a Comment for "Showing Two Progressdialog Instead One"