Android - Disable Password hint
How to disable password hin开发者_如何转开发t while using softkeyboard in Android applications???
Mention the android:inputType attribute inside your EditText:
android:inputType="textFilter|textMultiLine|textNoSuggestions"
Here is the solution I have come up with.
- Create a new class that
extends TextWatcher @Override public void beforeTextChanged()to capture the newCharSequence- Store the new
CharSequenceprivately so you know what text is in there. - Replace the text in the
EditTextwith X number of password bullets (•) - Add the watcher to your
EditTextwithpwEditText.addTextChangedListener(new PassWatcher());
Hope that helps
加载中,请稍侯......
精彩评论