在我的Android应用程序中,我正在检查按钮的图像,然后更改它。 我怎么能这样做?
代码 -
Drawable a;
a=b1.getBackground();
int i=R.drawable.happy;
// b1 is button
if(a==R.drawable.happy)
b1.setBackgroundResource(R.drawable.whoa);
else
b1.setBackgroundResource(R.drawable.happy);
答案 0 :(得分:0)
试试这个:
Drawable a = b1.getDrawable();
Drawable image = getResources().getDrawable(R.drawable.happy);
// b1 is button
if(image.equals(a))
b1.setBackgroundResource(R.drawable.whoa);
else
b1.setBackgroundResource(R.drawable.happy);