When I need to shuffle a deck of poker cards in Java/Android, I use Collections.shuffle(List> list), of course. I\'ve ever been doing this and the results s
If you want real randomness, you could just skip pseudo random generators and go for something better like random numbers generated from athmospheric noise.
random.org offers an API to integrate random numbers generated that way into your own software.