0

これが私のコードです:

世界的に宣言された

    TextView test;
    EditText edittext;
    TextWatcher watcher;
    ArrayList<String> pastWrittenStrings;

onCreate()

   ....setcontentview etc...

test = (TextView)findViewById(R.id.textView2);
edittext = (EditText)findViewById(R.id.spokenmsg);
pastWrittenStrings = new ArrayList<String>();

watcher = new TextWatcher(){

        @Override
        public void afterTextChanged(Editable s) {


        }

        @Override
        public void beforeTextChanged(CharSequence s, int start, int count,
                int after) {
        String writtenNoLowerCase = test.getText().toString();

        pastWrittenStrings.add(writtenNoLowerCase);
        if(pastWrittenStrings.size()-1 != 0){
            edittext.setText(pastWrittenStrings.size()); //THIS LINE CAUSES THE ERROR
        }
        }
        @Override
        public void onTextChanged(CharSequence s, int start, int before,
                int count) {

        }

    };

onbuttonclick(ビュー v) ;

test.addTextChangedListener(watcher);
test.setText("calculations");

基本的に beforeTextChanged の edittext 行がエラーの原因です。私が実際にやろうとしているのは、変更される直前に文字列「test」の過去のインスタンスを記録し、それらを使用して配列リストを作成することです。私はまだ過去の文字列からどのような種類の文字列も取得できませんでした。また、配列リストを配列に変換することさえ含め、あらゆることを試しました。

助けてください!

編集:Logcat

07-26 21:12:26.555: E/AndroidRuntime(1580): FATAL EXCEPTION: main
07-26 21:12:26.555: E/AndroidRuntime(1580): java.lang.IllegalStateException: Could not execute method of the activity
07-26 21:12:26.555: E/AndroidRuntime(1580): Caused by: java.lang.reflect.InvocationTargetException
07-26 21:12:26.555: E/AndroidRuntime(1580): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x0
07-26 21:13:00.500: W/dalvikvm(1948): threadid=1: thread exiting with uncaught exception (group=0x40c67930)
07-26 21:13:00.505: E/AndroidRuntime(1948): FATAL EXCEPTION: main
07-26 21:13:00.505: E/AndroidRuntime(1948): java.lang.IllegalStateException: Could not execute method of the activity
07-26 21:13:00.505: E/AndroidRuntime(1948): Caused by: java.lang.reflect.InvocationTargetException
07-26 21:13:00.505: E/AndroidRuntime(1948): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x0
07-26 21:16:21.695: W/dalvikvm(2817): threadid=1: thread exiting with uncaught exception (group=0x40c67930)
07-26 21:16:21.705: E/AndroidRuntime(2817): FATAL EXCEPTION: main
07-26 21:16:21.705: E/AndroidRuntime(2817): java.lang.IllegalStateException: Could not execute method of the activity
07-26 21:16:21.705: E/AndroidRuntime(2817): Caused by: java.lang.reflect.InvocationTargetException
07-26 21:16:21.705: E/AndroidRuntime(2817): Caused by: android.content.res.Resources$NotFoundException: String resource ID #0x2
4

1 に答える 1