我是Android的新手,但为了练习和学习更多,我想尝试制作一个练习应用程序,它实际上只允许用户在他们第一次登录的那一刻内登录。所以换句话说,如果你在10:23登录,一旦时钟到达10:24,用户就会被注销。为此,我通过我的 public void window_MouseMove (object sender, MouseEventArgs e)
{
MousePosition.text = e.GetPosition(this).ToString();
}
登录,在LoginActivity
对象中分享当前分钟。为了在SharedPreferences
中使用onResume()
方法,我的应用程序首先打开主要活动AppActivity
,然后在{{1}中打开AppActivity
我的LoginActivity
类的方法。希望在我的解释中不会过于冗余,目标是在onCreate()
的{{1}}方法中调用AppActivity
。
这是sessionChecker_AsyncTask.execute()
中的登录按钮:
onResume()
这里有帮助方法AppActivity
:
LoginActivity
正如您所看到的,我只是通过登录按钮将当前分钟存储在login_button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
int result = getTime();
SharedPreferences pref = getSharedPreferences(PREF, MODE_PRIVATE);
SharedPreferences.Editor editor = pref.edit();
editor.putInt(SESSION, result);
editor.commit();
finish();
}
});
对象中。现在,我想在我的getTime()
课程中创建private int getTime() {
Calendar time = Calendar.getInstance();
return time.get(Calendar.MINUTE);
}
,如果SharedPreferences
中的当前分钟与我AsyncTask
中存储的分钟相匹配,则每500毫秒(.5秒)检查一次{1}}对象,如果不是,我想基本上将用户注销并将其发送回AppActivity
。
我的问题是,我对AppActivity
和SharedPreferences
方法LoginActivity
中应该实现的类型感到有点困惑。我还需要AsyncTask
方法,并且实现它可能对doInBackground()
中的配置更改有用吗?到目前为止,我认为我应该设置这样的东西:
onPostExecute()
但是我还认为onCancelled()
根本不需要一个类型。相反,如果AppActivity
中传递的分钟与当前分钟不匹配,则应仅调用private class SessionCheckerTask extends AsyncTask<Integer, Void, Boolean>
{
@Override
protected Boolean doInBackground(Integer... minute_in_SharedPreferences) {
//Create a thread that refreshes every 500ms that checks current time
return false; //if the current time doesn't match the time in shared preferences
}
@Override
protected void onPostExecute(Boolean aBoolean) {
super.onPostExecute(aBoolean);
/*
If false was returned create a toast that says "Activity session has expired"
then open the login activity again
*/
}
}
,但我不确定如何在典型的doInBackground()
中实现此目的格式。
答案 0 :(得分:0)
试试这个:
在你的doInBackground中:
do {
if (getTime >= pref.getInt (SESSION, result)) break;
try{
Thread.sleep(500);
} catch (InterruptedException e) {
e.printStackTrace();
}
} while (true);
在你的onPostExecute中:
Toast.makeText(context, "Activity session has expired", Toast.LENGTH_SHORT).show();
startActivity(new Intent(context, LoginActivity.class)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
P.S。:我认为记住一分钟然后将当前分钟与您保存的分钟进行比较是错误的。如果它是,例如,21:59你保存int“21”,但在下一秒它将是“22”。尝试做同样的事情,但只需几秒钟。然后在doInBackground中make float a = pref.getInt(SESSION,result),在do..while循环中make a = + 0.5