我想做一个 if 语句,我将在其中比较布局背景颜色的颜色,如下所示:
RelativeLayout screen = (RelativeLayout) findViewById (R.id.screen);
if(screen.getBackgroundColor() == "#FFFFFFFF"){
//do something...
}
else{
//do something else...
}
我不知道如何获得背景颜色。我通过以下方式设置颜色:screen.setBackgroundColor(Color.parseColor("#000000"));