2013-08-31 91 views
0

我一直在閱讀一些關於更改ImageView中圖像的文章。
但是,每個人都要求用自定義圖像設置ImageView,並且我想在其中設置一個系統圖像。如何使用另一個資源圖標更改imageview中的資源圖標

我做了這個:

ledicon.setImageDrawable(getResources().getDrawable(R.drawable.presence_busy)); 

但是Eclipse告訴我,presence_busy無法識別。
爲什麼?

我在XML文件中使用presence_online,

android:src="@android:drawable/presence_online" 

和所有完美的作品。

回答

2

試試這個:

ledicon.setImageDrawable(getResources().getDrawable(android.R.drawable.presence_busy)); 

(當訪問系統resouces你要看看他們嗯在android.R不是你自己的。)

+0

迷死人!!!! ^^謝謝。而已。 – MAOL

+0

很高興幫助。如果你能接受答案,會很酷...... – pumpkee

+0

10分鐘^^。等等;) – MAOL

相關問題