运行 接连 Android 中的处理程序任务

Run Handler Task in Android successively

atm 我的实际 Android 申请有问题。

解释:

起初我想在 TextView 中按字符显示文本。这是我的实际代码

tvIntro.setText("");
        final Handler textHandler = new Handler();

        for(int i=0; i<intro.length();i++){

            final int finalCount = i;
            textHandler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    tvIntro.setText(tvIntro.getText() + (intro.charAt(finalCount)+""));
                }
            }, 150 * i);

        }

显示全部文字后,我想播放一个声音并持续改变屏幕颜色5秒。为此,我的代码是:

myBackground.setBackgroundColor(Color.RED);// set initial colour
        final Thread blink =  new Thread(new Runnable() {
            public void run() {
                while (getRunning()) {
                    try {
                        Thread.sleep(100);
                        if(start[0] !=1){
                            mp.start();
                            start[0] = 1;

                        }


                    }
                    catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    updateColor(myBackground);
                    whichColor = !whichColor;
                }
            }
        });

private void updateColor(final RelativeLayout myBackground) {
    runOnUiThread(new Runnable() {
        @Override
        public void run() {
            if (whichColor)
                myBackground.setBackgroundColor(Color.RED);
            else
                myBackground.setBackgroundColor(Color.GREEN);
        }
    });
}

所有功能都在工作,但我也想在执行第二个处理程序之前完成第一个处理程序。此外,第二个处理程序应在 x 秒后停止。

我在理解处理程序和线程的工作方式时遇到了一些问题。 如果你们中有人能为我提供解决方案,那就太好了。

要延迟执行任务直到指定线程(或多个线程)完成,请在您希望等待的线程之后立即添加此行:

myThread.join();

然后在完成后立即使用您希望 运行 的代码。

对于第二个问题,您可以将变量设置为结束线程之前要等待的时间量的值(以毫秒为单位),然后将该值减少 100(或您选择的任何数量)告诉它在每次代码 运行s 时睡觉)。检查该值是否小于或等于零,然后如果该条件 returns 为真,则以中断结束线程。所以基本上:

long timeToRun = 5000, sleepTime = 100;

// Your code here...

Thread.sleep(sleepTime);
timeToRun -= sleepTime;
if(timeToRun <= 0) {
myThread.interrupt();
}

可能有更优雅的方法来完成此操作,但至少这应该可以解决您的问题。