Added in API level 1

StringBuilderPrinter


open class StringBuilderPrinter : Printer
kotlin.Any
   ↳ android.util.StringBuilderPrinter

Implementation of a android.util.Printer that sends its output to a StringBuilder.

Summary

Public constructors

Create a new Printer that sends to a StringBuilder object.

Public methods
open Unit

Write a line of text to the output.

Public constructors

StringBuilderPrinter

Added in API level 1
StringBuilderPrinter(builder: StringBuilder!)

Create a new Printer that sends to a StringBuilder object.

Parameters
builder StringBuilder!: The StringBuilder where you would like output to go.

Public methods

println

Added in API level 1
open fun println(x: String!): Unit

Write a line of text to the output. There is no need to terminate the given string with a newline.