0
edittextに文字を入力し、edittext lenthが3より大きい場合は、ブラケットを維持するように、実行時にテキストを変更します。実行時にアンドロイドで実行時にEditTextのテキストを変更する方法
誰でもこのことを知らせてください。事前に
おかげ
Trapti
edittextに文字を入力し、edittext lenthが3より大きい場合は、ブラケットを維持するように、実行時にテキストを変更します。実行時にアンドロイドで実行時にEditTextのテキストを変更する方法
誰でもこのことを知らせてください。事前に
おかげ
Trapti
あなたは文字がのEditTextフィールドから入力されたか、削除されたときに呼び出されるのEditTextのためTextWatcherを登録することができます。
EditText editText = (EditText) findViewById(R.id.edit_text_field_id);
editText.addTextChangedListener(new TextWatcher() {
@Override
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.
}
@Override
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.
}
@Override
public void afterTextChanged(Editable s) {
// This method is called to notify you that, somewhere within s, the text has
// been changed.
}
});
TextWatcherのドキュメントを参照してください。詳細については、
明確にしてください。 「ブラケットを維持する」とはどういう意味ですか? –