本文介绍了如何在Java的Andr​​oid上执行一个功能每两秒钟?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在我每两秒钟Android程序执行的Java的code一大块。我的code目前看起来是这样的:

I'm trying to execute a chunk of Java code in my Android program every two seconds. My code currently looks like this:

       LinearLayout.postDelayed(new Runnable() {
            public void run() {

            //Do stuff here

            }
       }, 2000);

不幸的是,两秒钟后该只运行一次,然后再也没有运行。我怎么能得到它运行每两秒钟?

Unfortunately, this only runs once after two seconds and then never runs again. How could I get it to run every two seconds?

在此先感谢您的帮助。

推荐答案

试试这个:

   LinearLayout.postDelayed(new Runnable() {
        public void run() {

        //Do stuff here

            // assuming LinearLayout is enclosing class
            LinearLayout.this.postDelayed(this, 2000);
        }
   }, 2000);

这篇关于如何在Java的Andr​​oid上执行一个功能每两秒钟?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-31 23:46