android postdelayed 多个定时会干扰吗,安卓处理程序.postDelayed()每次迭代都会加快速度...

这篇博客探讨了两种在Java中改变Spinner选择的方法。第一种使用Runnable和postDelayed,第二种则利用TimerTask和scheduleAtFixedRate。作者更倾向于第一种方法,尽管在某些设备上可能存在问题,但因其简洁性而偏好。文章讨论了这两种技术的差异和可能的影响。
摘要由CSDN通过智能技术生成

我有这样的处理者:

public void changeSpinnerWaitSelection2() {

Runnable runnable = new Runnable()

{

public void run()

{

if (count <= 3) spinnerWait.setSelection(count, true);

count++;

mTimerHandler2.postDelayed(this, 500);

}

};

runnable.run();

}

count

在另一个地方重置。这个处理程序怎么了?

而另一种方法也能完美地工作:

public void changeSpinnerWaitSelection() {

TimerTask mTt1 = new TimerTask() {

public void run() {

mTimerHandler5.post(() -> {

if (count > 4) { mTimer2.cancel();}

if (count <= 3) spinnerWait.setSelection(count, true);

count++;

});

}

};

mTimer2 = new Timer();

mTimer2.scheduleAtFixedRate(mTt1, 0, 500);

}

但我更喜欢第一个版本,因为缺少TimerTask,这似乎对我的一个设备有害。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值