2016-08-21 7 views
-1

이 대화 상자가 항목을 표시하지 않는 이유를 설명 할 수 있습니까?Android - 알리미 대화 상자에 항목이 표시되지 않습니다.

new AlertDialog.Builder(MainActivity.context) 
         .setTitle("Gestione topic") 
         .setMessage("Cosa vuoi leggere?") 
         .setItems(R.array.topicChoices, new DialogInterface.OnClickListener() { 
          @Override 
          public void onClick(DialogInterface dialogInterface, int i) { 
           //code here 
          } 
         }).setNegativeButton("Annulla", new DialogInterface.OnClickListener() { 
        @Override 
        public void onClick(DialogInterface dialogInterface, int i) { 
         dialogInterface.dismiss(); 
        } 
       }).show(); 

R.array.topicChoices

<string-array name="topicChoices"> 
    <item>Topic non letti</item> 
    <item>Risposte non lette</item> 
</string-array> 

어디에 버그가 무엇입니까?

감사합니다.

답변

4

setMessage는 setItem을 재정 의하여 setMessage를 제거해야합니다.

0

위의 이유로 경고 대화 상자 항목이 표시되지 않는 here을 참조하십시오.