Back to project page RealtimeStorage-Android.
The source code is released under:
MIT License
If you think the Android project RealtimeStorage-Android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package helpers; /*from w ww.j a v a2s . c om*/ import java.util.Random; import config.Config; public class ListNameHelper { public static String generateRandomList() { Random rnd = new Random(); StringBuilder sb = new StringBuilder( 6 ); for( int i = 0; i < 6; i++ ) sb.append( Config.RANDOM_STR_SET.charAt(rnd.nextInt(Config.RANDOM_STR_SET.length())) ); return sb.toString(); } }