Disable background dim on ProgressDialog/AlertDialog in Android
use
myLoadingDialog.getWindow().clearFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND);
you can add this theme to solve this problem also
<item name="android:backgroundDimEnabled">false</item>