我正在编写一个应用程序,每次按下按钮时都会更改活动的背景颜色。这就是我到目前为止所拥有的。但它不工作!我究竟做错了什么?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button b = (Button) findViewById(R.id.button1);
final View a = findViewById(R.id.m);
final Random color = new Random();
final Paint p = new Paint();
b.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
p.setARGB(256,color.nextInt(256),color.nextInt(256),color.nextInt(256));
a.setBackgroundColor((p.getColor()));
}
});
}
它在我传递一种颜色时起作用,例如 a.setBackgroundColor(Color.GREEN);