学生の名前がデータベースから取得され、アラートボックスに表示されるという要件があります。ユーザーがアラートボックスから学生の名前を選択できるように、そのアラートの学生の名前ごとにチェックボックスを表示する必要があります。
public void Show_friends()
{
AlertDialog.Builder builder1 = new AlertDialog.Builder(this);
try
{
builder1.setItems(paymentby,new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int item)
{
}
}
);
AlertDialog alert = builder1.create();
alert.show();
}
catch (Exception e) {
System.out.println("Gesture exception caught");
}
System.out.println("================vij=========================inside if");
}
}
これは私のコードです