Back to project page slider.
The source code is released under:
Apache License
If you think the Android project slider listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * //from w w w . j a v a 2s . c o m */ package de.devisnik.android.sliding; import java.util.Random; import de.devisnik.sliding.IRandom; final class ARandom implements IRandom { Random random = new Random(); @Override public int nextInt(int border) { return random.nextInt(border); } }