我是android的新手,但是为了练习和学习更多,我想尝试制作一个练习应用程序,该应用程序本质上仅允许用户在首次登录的那一分钟内登录。因此,如果您如果您在10:23登录,则时钟将在10:24退出。为此,我通过LoginActivity
登录,并在SharedPreferences
对象中共享当前分钟。为了在onResume()
中使用AppActivity
方法,我的应用程序首先打开主活动AppActivity
,然后在LoginActivity
类的onCreate()
方法中打开我的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
类中创建一个AppActivity
,每隔500毫秒(.5秒)检查一次,如果我在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()
完全不必具有类型。相反,只有在onPostExecute()
中传递的分钟与当前分钟不匹配时,才应调用doInBackground()
,但是我不确定如何以典型的AsyncTask
格式实现它。 最佳答案
尝试这个:
在您的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));
附注:我认为记住一分钟,然后将当前一分钟与保存的一分钟进行比较是错误的方法。例如,如果它是21:59,则保存int“ 21”,但是下一秒将是“ 22”。尝试执行相同操作,但要花几秒钟。然后在doInBackground中使float a = pref.getInt(SESSION,结果),在do..while中使a + = 0.5