Android 6.0 Dialog text doesn't appear

后端 未结 11 2108
感情败类
感情败类 2020-12-15 17:02

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):

          


        
11条回答
  •  爱一瞬间的悲伤
    2020-12-15 17:16

    Maybe your main text color is the same as dialog background color, in that case in your styles.xml use (just an example):

    
    

    and in dialog creation:

    new AlertDialog.Builder(
            new ContextThemeWrapper(getContext(), R.style.AlertDialog))
    ).setMessage("test");
    

提交回复
热议问题