使用spannablestring附加文本左侧的图像

时间:2015-06-01 18:17:14

标签: android image xamarin textview inline

我想在文本视图中,在文本本身前面显示图像。我试过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

但是图像在开头而不是在最后。

0 个答案:

没有答案