I updated my phone to Android 6.0 and I have these 2 problems with dialogs:
1)The title is shown but the messages isn\'t for alert dialog(SOLVED):
I suspect that you are ending up showing white text on a white background! (Looking at the screenshot, the (i) icon is not showing up well either, suggesting that it was designed to be shown on a background other than white.
You can use the constructor public AlertDialog.Builder (Context context, int themeResId)
to ensure you are using a specific theme to style your dialog, where the Theme_Material_Dialog
is probably what you want.