for 循环服务中的处理程序

Handlers in for-loop Services

我在 Activity class 中使用了以下代码,它正在运行 fine.K 已相应更新。但是当我在服务中使用它时class,for循环中的变量k没有等待处理程序。

    for( k=0;k<personsToSend.length;k++) {
                Log.e(TAG,"outside k = "+k);
                new Handler().postDelayed(new Runnable() {
                    public void run() {
                        Log.e(TAG,"Inside k = "+k);
                    }
                }, 1000);
    }

Logcat:

outside  k = 0
outside k = 1
outside  k = 2
outside k = 3
outside k = 4
Inside k = 5
Inside k = 5
Inside k = 5
Inside k = 5
Inside k = 5

如果我尝试在处理程序中通过索引访问数组,它会给出错误 ArrayOutOfBoundException。有没有解决这个问题的方法,或者我必须使用 JobSheduler 或其他东西。

为此使用 Runnable。如下。

int k = 0;
Handler mHandler = new Handler();

第一次使用

mHandler.post(runnable);

Runnable runnable=new Runnable() {
    @Override
    public void run() {
        Log.e(TAG,"outside k = "+k);
        if (k == personsToSend.length) {

        }else {
            mHandler.postDelayed(runnable,1000);
        }
        k++;
    }
};