Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
601 views
in Technique[技术] by (71.8m points)

xamarin.android - The effect of BufferType.Normal and BufferType.Spannable for textView

I have this code:

    TextView tv1 = FindViewById<TextView>(Resource.Id.textView1);
    tv1.Text = "Text";
    SpannableString wordtoSpan = new SpannableString(tv1.Text);
    wordtoSpan.SetSpan(new UnderlineSpan(), 0, tv1.Text.Length, 0);
    tv1.SetText(wordtoSpan, TextView.BufferType.Normal);

Whether I use BufferType.Normal or BufferType.Spannable, A line is drawn below the text, a line appears below the text. So what is the effect of BufferType.Normal and BufferType.Spannable?

question from:https://stackoverflow.com/questions/65642029/the-effect-of-buffertype-normal-and-buffertype-spannable-for-textview

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

TextView.BufferType:

  • Normal: normal;
  • Editable: characters can be appended;
  • Spannable: use styles in the given character area;

The type of the text buffer that defines the characteristics of the text such as static, styleable, or editable. It could be used for changing the TextView in runtime.

TextView.BufferType.Editable: Insert

      TextView tv2 = FindViewById<TextView>(Resource.Id.textView2);
        tv2.SetText("Hello", TextView.BufferType.Editable);
        var s = tv2.EditableText;
        s.Insert(1, " Hello");

OutPut:

enter image description here

TextView.BufferType.Spannable: set the different color in a single Textview

TextView tv3 = FindViewById<TextView>(Resource.Id.textView3);
        tv3.Text = "Hello World";
        SpannableString wordtoSpan3 = new SpannableString(tv3.Text);
        wordtoSpan3.SetSpan(new ForegroundColorSpan(Color.Red), 0, 5, 0);  // "Hello" is red
        wordtoSpan3.SetSpan(new ForegroundColorSpan(Color.Blue), 7, 11, 0); // "orld" is blue
        tv3.SetText(wordtoSpan3, TextView.BufferType.Spannable);

Output:

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...