random in bound java code example
Example 1: generate random number in java within a range without repeating with android studio
public void NextRandom(View view) // button clicked function
{
int previousIndex = index;
index = rand.nextInt(array.size());
while (index == previousIndex)
{
index = rand.nextInt(array.size());
}
}
Example 2: get random number from enum in java
return Letter.values()[new Random().nextInt(Letter.values().length)];