Générez un nombre aléatoire en Java dans une gamme sans répéter avec 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());
        }
    }
Cisco Ramon