I\'m trying to create an android application which will generate random series of values (integer numbers in this case) in a given range (but NOT equal betw
If I understand this correctly, you all the numbers should be unique. You could fill a list with the range you want to draw from. Every time you have selected a value from it, you should remove it from the list so it won't be selected a second time. I hope this description is clear enough. If not, I will provide some code.