// 判断APP的登录时长 默认30天 最好存在自己的工具类里方便调用
public static boolean isLogin(){
// 登录的时候保存下当前登录时间,然后拿以后进入欢迎界面的时间作对比,大于30天就跳登录界面!
long aLong = PreferencesUtils.getLong(App.getAppContext(), Constant.USER_LOGIN, 0L)/ (long) 1000;
long currentTime=System.currentTimeMillis()/ (long) 1000;
long time=currentTime-aLong;
if (time >= 60*60 * 24*30){
return true;//需要登录
}else {
return false;// 不需要登录
}
}
网友评论