123456789101112131415161718 |
- package com.ynstkz.shitu.android.data;
- /**
- * 作者:fuchangle on 2018/2/5 10:42
- */
- public class SharedPreferencesUtils {
- private static final String IS_LOGIN = "isLogin";
- /**
- * 是否登录
- * @return
- */
- public static boolean isLogin(){
- return (Boolean)SharedPreferencesDao.get(IS_LOGIN, false);
- }
- }
|