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):
new AlertDialog.Builder(context).setTitle("Title").setMessage("Message");
2)Also custom dialog fragment's title is not shown(NOT SOLVED):
getDialog().setTitle("Title");
There was not such a problem in lollipop or in older versions, the problem appeared only after updating my phone to marshmallow.
How to solve the problem?