1

我一直在阅读一些关于在 ImageView 中更改图像的帖子。
但是每个人都要求使用自定义图像设置 ImageView,而我想在其中设置系统图像。

我做的:

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

但 Eclipse 告诉我 present_busy 无法识别。
为什么?

我在 XML 文件中使用了 Presence_online,

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

一切都很完美。

4

1 回答 1

3

尝试这个:

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

(访问系统资源时,您必须在 android.R 中查看它们,而不是您自己的。)

于 2013-08-31T18:03:57.217 回答