11

目前我有代码来淡化亮度调整,看起来像这样:

new Thread() {
    public void run() {
        for (int i = initial; i < target; i++) {
            final int bright = i;
            handle.post(new Runnable() {
                public void run() {
                    float currentBright = bright / 100f;
                    window.getAttributes().screenBrightness = currentBright;
                    window.setAttributes(window.getAttributes());
                });
            }
            try {
                sleep(step);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}.start();

我不确定这是否被认为是好的方法(我考虑使用 ASyncTask,但在这种情况下我看不到好处)。有没有更好的方法来实现背光褪色?

编辑:我现在使用 TimerTask 如下:

new Timer().schedule(new TimerTask() {
    @Override
    public void run() {
        final float currentBright = counter[0] / 100f;
        handle.post(new Runnable() {    
            public void run() {
                window.getAttributes().screenBrightness = currentBright;
                window.setAttributes(window.getAttributes());
                if (++counter[0] <= target) {
                    cancel();
                }
            }
        });
    }
}, 0, step);

我使用数组作为计数器的原因是因为它需要在final中访问Runnable,但我需要修改值。这使用更少的 CPU,但仍然比我喜欢的多。

EDIT2:Aaa 和第三次尝试。感谢 CommonsWare 的建议!(我希望我正确应用它!)

    handle.post(new Runnable() {
        public void run() {
            if (counter[0] < target) {
                final float currentBright = counter[0] / 100f;
                window.getAttributes().screenBrightness = currentBright;            
                window.setAttributes(window.getAttributes());
                counter[0]++;
                handle.postDelayed(this, step);
            }
        }
   });

谢谢!

4

2 回答 2

2

如何在每次迭代中将亮度降低到一半。

然后循环将在 O(log n) 而不是当前解决方案中的 O(n) 中完成。

于 2011-09-15T15:47:58.293 回答
1

在 Honeycomb 中,您可以使用Property Animation来做这些事情。Android 开发者博客上的这篇文章详细讨论了这一切。

于 2011-09-15T16:01:11.367 回答