2

CharSequence内の文字の位置(またはキー)がわかっている場合は、 CharSequence内の正確な文字のみを抽出したいと思います。

For eg: In the CharSequence "HELLO" I want to Extract the letter in the position 2 which is "E" in this caseどうやってやるの?

具体 的には、次のように、TextWatcherを使用してテキストエディットフィールドに入力されたテキストを取得するAndroidアプリケーションを構築しています。

    EditText KeyLogEditText = (EditText) findViewById(R.id.editTextforKeyLog);
    KeyLogEditText.addTextChangedListener(new TextWatcher() {

        @Override
        public void onTextChanged(CharSequence s, int start, int before, int count) {
            // Here is where I need help!!
            // I have the "start" and "before" keys I have the position of the character inserted
            // I need to obtain the EXACT character from the CharSequence "s", How do I Do that?                

        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {
            // TODO Auto-generated method stub

        }

        @Override
        public void afterTextChanged(Editable s) {
            // TODO Auto-generated method stub

        }
    });

私の質問もコード内でコメントされています。

誰もが提供できる助けをありがとう。Adit

4

1 に答える 1

7

charAt()メソッドを使用しCharSequenceます。

于 2012-12-24T21:19:20.223 に答える