23 lines
851 B
Java
23 lines
851 B
Java
package com.gh.common.constant;
|
|
|
|
|
|
import android.content.Context;
|
|
import android.content.SharedPreferences;
|
|
|
|
public class Config {
|
|
|
|
public static final String HOST = "http://dev.api2.ghzhushou.com/v2d5/";
|
|
public static final String USER_HOST = "http://dev.user2.ghzhushou.com/v1d2/";
|
|
public static final String COMMENT_HOST = "http://dev.comment2.ghzhushou.com/v1d2/";
|
|
public static final String DATA_HOST = "http://data.ghzhushou.com/";
|
|
public static final String LIBAO_HOST = "http://dev.libao2.ghzhushou.com/v1d2/";
|
|
public static final String MESSAGE_HOST = "http://message.ghzhushou.com/v1d0/";
|
|
public static final String PREFERENCE = "ghzhushou";
|
|
|
|
public static boolean isShow(Context context) {
|
|
SharedPreferences sp = context.getSharedPreferences(Config.PREFERENCE, Context.MODE_PRIVATE);
|
|
return sp.getBoolean("isShow", true);
|
|
}
|
|
|
|
}
|