22 lines
750 B
Java
22 lines
750 B
Java
package com.gh.common.constant;
|
|
|
|
|
|
import android.content.Context;
|
|
import android.content.SharedPreferences;
|
|
|
|
public class Config {
|
|
|
|
public static final String HOST = "http://api.ghzhushou.com/v2d4/";
|
|
public static final String USER_HOST = "http://user.ghzhushou.com/v1d1/";
|
|
public static final String COMMENT_HOST = "http://comment.ghzhushou.com/v1d1/";
|
|
public static final String DATA_HOST = "http://data.ghzhushou.com/";
|
|
public static final String LIBAO_HOST = "http://libao.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);
|
|
}
|
|
|
|
}
|