我想使用从资源加载的drawable来再次用作资源。我这样做是因为我需要设置那个drawable的界限。
Drawable smiley = d.Resources.GetDrawable(Resource.Drawable.emoji_1f600);
smiley.SetBounds(0, 0, orig.LineHeight, orig.LineHeight);
//Can't pass smiley like this, an int is expected.
var imageSpan = new ImageSpan(_activity, smiley);
答案 0 :(得分:1)
您可以将drawable用作位图,因为构造函数ImageSpan(Context,Bitmap)存在: