Back to project page iSlide.
The source code is released under:
MIT License
If you think the Android project iSlide 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 edu.csun.group2.islide; /* w w w.j a va 2 s . c om*/ public class Utility { public static boolean picTaken = false; public static int size = 4; public static boolean sound = false; public static String fileLocation = ""; public static boolean showNumbers = true; public static UtilityInfo CreateUtilityInfo() { UtilityInfo ui = new UtilityInfo(size,0,sound,fileLocation, showNumbers); return ui; } }