Android中的OTP到期实施

问题描述 投票:0回答:2

我要求实现,在我的活动中,我收到一个OTP登录,OTP已经过了90秒。

问题

1>报警管理器是实现90秒时间到期的最佳方式吗?

2>如果我收到了OTP,同时我接到一个电话,当电话在90秒后结束,当我回到原始活动时,应该显示一个弹出窗口,说OTP已经过期了?

任何帮助将不胜感激。

谢谢

android one-time-password
2个回答
0
投票

使用CountDownTimer

new CountDownTimer(90000, 1000) {
 public void onTick(long millisUntilFinished) {
     Log.d("seconds remaining: " , millisUntilFinished / 1000);
 }

 public void onFinish() {
     // Called after timer finishes
 }
}.start();

0
投票

您可以像下面的示例一样使用TimerTask

public class AndroidTimerTaskExample extends Activity {

Timer timer;
TimerTask timerTask;

        //we are going to use a handler to be able to run in our TimerTask
        final Handler handler = new Handler();

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }

        @Override
        protected void onResume() {
            super.onResume();

            //onResume we start our timer so it can start when the app comes from the background
            startTimer();
        }

        public void startTimer() {
            //set a new Timer
            timer = new Timer();

            //initialize the TimerTask's job
            initializeTimerTask();

            //schedule the timer, after the first 5000ms the TimerTask will run every 10000ms
            timer.schedule(timerTask, 5000, 10000); //
        }

        public void stoptimertask(View v) {
            //stop the timer, if it's not already null
            if (timer != null) {
                timer.cancel();
                timer = null;
            }
        }

        public void initializeTimerTask() {

            timerTask = new TimerTask() {
                public void run() {

                    //use a handler to run a toast that shows the current timestamp
                    handler.post(new Runnable() {
                        public void run() {
                            //get the current timeStamp
                            Calendar calendar = Calendar.getInstance();
                            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd:MMMM:yyyy HH:mm:ss a");
                            final String strDate = simpleDateFormat.format(calendar.getTime());

                            //show the toast
                            int duration = Toast.LENGTH_SHORT;  
                            Toast toast = Toast.makeText(getApplicationContext(), strDate, duration);
                            toast.show();
                        }
                    });
                }
            };
        }}

您可以根据您的呼叫更改任务的开始和停止,并随时初始化。

© www.soinside.com 2019 - 2024. All rights reserved.