別のタブ内にあるタブ内にリストビューがあり、リストをクリックするとこのアラートが正しく表示されますが、タブを変更せずに別のリストをクリックすると、このエラーが表示されます
TouchEvent: ACTION_DOWN but pointers are already down. Probably missing ACTION_UP from previous gesture.
このように見える私のアラート
@Override
public boolean onCreateOptionsMenu(Menu menu) {
//MenuInflater inflater = getMenuInflater();
//inflater.inflate(R.menu.downloadmennu, menu);
//---------------------------------------------------------------------------------------------------------
AlertDialog.Builder alertDialog = new AlertDialog.Builder(Question_Download.this.getParent().getParent());
alertDialog.setTitle("Make your choice...");
alertDialog.setMessage("What do you want to download?");
alertDialog.setIcon(R.drawable.save_file_floppy);
alertDialog.setPositiveButton("Mock Exam", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which)
{
downloadOptionSelected = DownloadOptions.MockExam;
isMock = true;
AppPreferenceStatus.setStudyDownload(CurContext,CourseMatIntent.MockExam);
MockExamActivity(chapterPosition);
}
});
alertDialog.setNeutralButton("Study Mats.", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which)
{
downloadOptionSelected = DownloadOptions.StudyMaterials;
AppPreferenceStatus.setStudyDownload(CurContext,CourseMatIntent.StudyMaterials);
StudyMatActivity(chapterPosition);
}
});
alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which)
{
}
});
alertDialog.show();
return true;
//---------------------------------------------------------------------------------------------------------
}