我是 android 新手,我要实例化一个 Drawable 引用。
如果该类扩展了 Activity 我们可以直接使用它..
Drawable myDrawable = getResources().getDrawable(R.drawable.image1);
iv.setImageDrawable(myDrawable);
由于我的课程是自定义适配器,因此该getResources
方法不可用。
有什么办法……?
这个我已经试过了……
imageview.setTag(R.drawable.stack_default);
任何帮助表示赞赏:)