FileDocCategorySizeDatePackage
LogTextBox.javaAPI DocAndroid 1.5 API2061Wed May 06 22:41:08 BST 2009com.android.development

LogTextBox

public class LogTextBox extends android.widget.TextView
This is a TextView that is Editable and by default scrollable, like EditText without a cursor.

XML attributes

See {@link android.R.styleable#TextView TextView Attributes}, {@link android.R.styleable#View View Attributes}

Fields Summary
Constructors Summary
public LogTextBox(android.content.Context context)

        this(context, null);
    
public LogTextBox(android.content.Context context, android.util.AttributeSet attrs)

        this(context, attrs, android.R.attr.textViewStyle);
    
public LogTextBox(android.content.Context context, android.util.AttributeSet attrs, int defStyle)

        super(context, attrs, defStyle);
    
Methods Summary
protected booleangetDefaultEditable()

        return true;
    
protected android.text.method.MovementMethodgetDefaultMovementMethod()

        return ScrollingMovementMethod.getInstance();
    
public android.text.EditablegetText()

        return (Editable) super.getText();
    
public voidsetText(java.lang.CharSequence text, BufferType type)

        super.setText(text, BufferType.EDITABLE);