我想在文本视图中,在文本本身前面显示图像。我试过CompoundDrawable
,但第二行的文字没有放在第一行的图像下面。
我需要这样的东西:
var imageSpan = new ImageSpan(this, Resource.Drawable.Icon); //Find your drawable.
var spannableString = new SpannableString(textView.Text); //Set text SpannableString from TextView
spannableString.SetSpan(imageSpan, textView.Text.Length -1, textView.Text.Length, 0); //Add image at end of string
但是图像在开头而不是在最后。