📅  最后修改于: 2022-03-11 14:52:08.834000             🧑  作者: Mango
public void NextRandom(View view) // button clicked function
{
int previousIndex = index;
index = rand.nextInt(array.size());
while (index == previousIndex)
{
index = rand.nextInt(array.size());
}
}