Back to project page FlashAndroid.
The source code is released under:
GNU General Public License
If you think the Android project FlashAndroid 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 flash.android.singlehand; //from www. j av a2 s. co m public final class SingleHandManger { public static int s_viewWidth = 204; public static int s_viewHeight = 363; private static boolean s_isSingleHand = false; public static void switchMode() { s_isSingleHand = !s_isSingleHand; } public static boolean isSingleHand() { return s_isSingleHand; } }