我正在使用此代码来获取可绘制对象并在SetCompoundDrawablesWithIntrinsicBounds
调用中使用:
Drawable d = Resources.System.GetDrawable(Resource.Drawable.navigable_icon);
textView.SetCompoundDrawablesWithIntrinsicBounds(null,null,d,null);
问题是,当调用该GetDrawable
方法时,我总是得到一个异常说明:
Android.Content.Res.Resources+NotFoundException:资源 ID 0x7f020009
与我在目录drawable
中的 xml 中使用的任何其他内容一样存在。drawable
有人能猜到发生了什么吗?