Added in API level 1

PasswordTransformationMethod


public class PasswordTransformationMethod
extends Object implements TextWatcher, TransformationMethod

java.lang.Object
   ↳ android.text.method.PasswordTransformationMethod


Summary

Public constructors

PasswordTransformationMethod()

Public methods

void afterTextChanged(Editable s)

This method is called to notify you that, somewhere within s, the text has been changed.

void beforeTextChanged(CharSequence s, int start, int count, int after)

This method is called to notify you that, within s, the count characters beginning at start are about to be replaced by new text with length after.

static PasswordTransformationMethod getInstance()
CharSequence getTransformation(CharSequence source, View view)

Returns a CharSequence that is a transformation of the source text -- for example, replacing each character with a dot in a password field.

void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect)

This method is called when the TextView that uses this TransformationMethod gains or loses focus.

void onTextChanged(CharSequence s, int start, int before, int count)

This method is called to notify you that, within s, the count characters beginning at start have just replaced old text that had length before.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

abstract void afterTextChanged(Editable s)

This method is called to notify you that, somewhere within s, the text has been changed.

abstract void beforeTextChanged(CharSequence s, int start, int count, int after)

This method is called to notify you that, within s, the count characters beginning at start are about to be replaced by new text with length after.

abstract void onTextChanged(CharSequence s, int start, int before, int count)

This method is called to notify you that, within s, the count characters beginning at start have just replaced old text that had length before.

abstract CharSequence getTransformation(CharSequence source, View view)

Returns a CharSequence that is a transformation of the source text -- for example, replacing each character with a dot in a password field.

abstract void onFocusChanged(View view, CharSequence sourceText, boolean focused, int direction, Rect previouslyFocusedRect)

This method is called when the TextView that uses this TransformationMethod gains or loses focus.

Public constructors

PasswordTransformationMethod

public PasswordTransformationMethod ()

Public methods

afterTextChanged

Added in API level 1
public void afterTextChanged (Editable s)

This method is called to notify you that, somewhere within s, the text has been changed. It is legitimate to make further changes to s from this callback, but be careful not to get yourself into an infinite loop, because any changes you make will cause this method to be called again recursively. (You are not told where the change took place because other afterTextChanged() methods may already have made other changes and invalidated the offsets. But if you need to know here, you can use Spannable.setSpan in onTextChanged(CharSequence, int, int, int) to mark your place and then look up from here where the span ended up.

Parameters
s Editable

beforeTextChanged

Added in API level 1
public void beforeTextChanged (CharSequence s, 
                int start, 
                int count, 
                int after)

This method is called to notify you that, within s, the count characters beginning at start are about to be replaced by new text with length after. It is an error to attempt to make changes to s from this callback.

Parameters
s CharSequence

start int

count int

after int

getInstance

Added in API level 1
public static PasswordTransformationMethod getInstance ()

getTransformation

Added in API level 1
public CharSequence getTransformation (CharSequence source, 
                View view)

Returns a CharSequence that is a transformation of the source text -- for example, replacing each character with a dot in a password field. Beware that the returned text must be exactly the same length as the source text, and that if the source text is Editable, the returned text must mirror it dynamically instead of doing a one-time copy. The method should not return null unless source is null.

Parameters
source CharSequence

view View

Returns
CharSequence

onFocusChanged

Added in API level 1
public void onFocusChanged (View view, 
                CharSequence sourceText, 
                boolean focused, 
                int direction, 
                Rect previouslyFocusedRect)

This method is called when the TextView that uses this TransformationMethod gains or loses focus.

Parameters
view View

sourceText CharSequence

focused boolean

direction int

previouslyFocusedRect Rect

onTextChanged

Added in API level 1
public void onTextChanged (CharSequence s, 
                int start, 
                int before, 
                int count)

This method is called to notify you that, within s, the count characters beginning at start have just replaced old text that had length before. It is an error to attempt to make changes to s from this callback.

Parameters
s CharSequence

start int

before int

count int