这是我的第一个问题,我希望我做得对。 我需要在特定的时间间隔内更改某些按钮的颜色。
我决定使用Colorfilter,因为setBackground方法使Button看起来很丑。
问题如下: 如果我将ColorFilter设置为Runnable,则无法正常工作。
但: 在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);
}
}
答案 0 :(得分:0)
我对imageviews有同样的问题。 我找到了一个解决方案,你必须调用invalidate() - methode:
ImageView img =(ImageView) findViewById(R.id.myimageview);
img.getDrawable().clearColorFilter();
img.invalidate();