程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> image-檢測按鈕圖片,在安卓系統中

image-檢測按鈕圖片,在安卓系統中

編輯:編程綜合問答
檢測按鈕圖片,在安卓系統中

在安卓應用中,檢測button的圖片,然後修改。怎麼實現?

我的代碼如下:

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

最佳回答:


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

試試這個

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved