Android Dialog theme makes icon too light
The problem is that you are using private resource android.R.drawable.ic_dialog_alert. Using private resources is problematic, they can vary on different devices and you can’t even be sure that they are present on all devices. The best is to avoid using private resources. If you need them, you should copy them from Android sources and put … Read more