Exemple #1
0
 public static int getMaxLine() {
   return PreferenceUtil.getInt(Config.MAX_LINE, 6);
 }
Exemple #2
0
 public static int getTextSize() {
   return PreferenceUtil.getInt(Config.TEXTSIZE, 1); // default 1
 }
Exemple #3
0
 public static int getMode() {
   int mode = PreferenceUtil.getInt(Config.MODE, Config.MODE_IMAGE); // default
   return mode == Config.MODE_TEXT_ONLY ? 1 : 0;
 }
Exemple #4
0
 public static int getGender() {
   return PreferenceUtil.getInt(Config.USER_GENDER, -4);
 }