检查android中的按钮图像

时间:2013-01-28 05:44:05

标签: android image button

在我的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);

1 个答案:

答案 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);