TextView.Append Method

Definition

Overloads

Append(ICharSequence)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Append(String)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Append(ICharSequence, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Append(String, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Append(ICharSequence)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)V", "")]
public void Append (Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;)V", "")>]
member this.Append : Java.Lang.ICharSequence -> unit

Parameters

text
ICharSequence

text to be appended to the already displayed text

Attributes

Remarks

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Java documentation for android.widget.TextView.append(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(String)

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

public void Append (string? text);
member this.Append : string -> unit

Parameters

text
String

text to be appended to the already displayed text

Remarks

Convenience method to append the specified text to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Java documentation for android.widget.TextView.append(java.lang.CharSequence).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(ICharSequence, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

[Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)V", "GetAppend_Ljava_lang_CharSequence_IIHandler")]
public virtual void Append (Java.Lang.ICharSequence? text, int start, int end);
[<Android.Runtime.Register("append", "(Ljava/lang/CharSequence;II)V", "GetAppend_Ljava_lang_CharSequence_IIHandler")>]
abstract member Append : Java.Lang.ICharSequence * int * int -> unit
override this.Append : Java.Lang.ICharSequence * int * int -> unit

Parameters

text
ICharSequence

text to be appended to the already displayed text

start
Int32

the index of the first character in the text

end
Int32

the index of the character following the last character in the text

Attributes

Remarks

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Java documentation for android.widget.TextView.append(java.lang.CharSequence, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

Append(String, Int32, Int32)

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

public void Append (string? text, int start, int end);
member this.Append : string * int * int -> unit

Parameters

text
String

text to be appended to the already displayed text

start
Int32

the index of the first character in the text

end
Int32

the index of the character following the last character in the text

Remarks

Convenience method to append the specified text slice to the TextView's display buffer, upgrading it to android.widget.TextView.BufferType#EDITABLE if it was not already editable.

Java documentation for android.widget.TextView.append(java.lang.CharSequence, int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to