当用户点击Next
按钮时,它会假设在数据库中显示下一个记录存储,但是当我运行应用程序时,用户必须单击previous
按钮才能查看下一个条目和{{1} }按钮没有执行任何活动。
Next
答案 0 :(得分:3)
您的if else
构造错误。试试这个:
if (buttonId == R.id.buttonViewPrevious){
if (currentBoothArrayIndex < boothArrayList.size() - 1) {
displayBoothInformation(--currentBoothArrayIndex);
}
}else if (buttonId == R.id.buttonViewNext){
if (currentBoothArrayIndex < boothArrayList.size() - 1) {
displayBoothInformation(++currentBoothArrayIndex);
}
}