下载按钮修改为默认开

This commit is contained in:
huangzhuanghua
2016-09-29 09:41:19 +08:00
parent dda8fe032c
commit e5e6a07e24
3 changed files with 2 additions and 3 deletions

View File

@ -11,7 +11,7 @@ public class Config {
public static boolean isShow(Context context) {
SharedPreferences sp = context.getSharedPreferences(Config.PREFERENCE, Context.MODE_PRIVATE);
return sp.getBoolean("isShow", false);
return sp.getBoolean("isShow", true);
}
}