Back to project page PinterestLikeApp.
The source code is released under:
MIT License
If you think the Android project PinterestLikeApp 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 com.dreamtale.pintrestlike.utils; // ww w . j a v a2 s . c o m public class UIConfig { public final static int MODE_GRID_VIEW = 0; public final static int MODE_PINTEREST_VIEW = 1; private int uiMode = MODE_GRID_VIEW; public static UIConfig sConfig = new UIConfig(); private UIConfig() { } public static UIConfig getInstance() { return sConfig; } public void setMode(int mode) { uiMode = mode; } public int getUIMode() { return uiMode; } }