1

这是我的第一个问题,我希望我做对了。我需要在特定的时间间隔内更改某些按钮的颜色。

我决定用 Colorfilter 来做,因为 setBackground 方法让 Button 看起来很丑。

问题如下:如果我在 Runnable 中设置 ColorFilter,它就不起作用

但是:在 onCreate 或 click 方法中设置 ColorFilter 是有效的。并且:在 Runnable 中使用 setBackgroundColor 设置 BackgroundColor 是有效的。

我忘了提一下,如果我在带有 android 4.1 但不是 2.3.3 的模拟器上运行它,一切正常。

有任何想法吗?这是代码

public class MainActivity extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }


    int counter = 0;
    Button b = null;

    final Handler handler = new Handler();
    final Runnable doit = new Runnable() {
        public void run() {

            if ( counter % 2 == 0) {
                b = (Button) findViewById(R.id.button1);
                b.setBackgroundColor(0xffff0000);  // working
                //b.getBackground().setColorFilter(0xFFD2691E, PorterDuff.Mode.MULTIPLY);   // doesnt work
            }
            else {
                //b.getBackground().clearColorFilter(); 
                b.setBackgroundColor(0xff00ff00);
            }
            counter++;
        }
    };

    public void click(View view) {
        // configure timer 1
        Timer timer = new Timer();
        TimerTask task = new TimerTask() {
            @Override
            public void run() {
                handler.post(doit);
            }
        };

        timer.schedule(task, 1111, 1111);
    }
}
4

1 回答 1

0

我对图像视图有同样的问题。我找到了一个解决方案,你必须调用 invalidate() 方法:

ImageView img =(ImageView) findViewById(R.id.myimageview);
img.getDrawable().clearColorFilter();
img.invalidate();
于 2014-09-18T07:35:45.693 回答