入力された単語を逆にして表示する方法reverseWord
を作成しました。アンドロイドを使い始めて、reverseWordメソッドで問題が発生しました
public void reverseEncrypt(View v)
{
// Get the input
EditText input = (EditText) findViewById(R.id.editText);
TextView output = (TextView) findViewById(R.id.tv_result);
TextView output2 = (TextView) findViewById(R.id.tv_test);
output2.setText("Test is complete");
// Reverse word
String text = input.getText().toString();
String word = " ";
for (int i = text.length(); i > 0; i--)
{
word += text.substring(i,i-1);
}
output2.setText(text);
// Output result
output.setText("Result: " + word);
}
方法は、I出力文字列word
またはtext
まで正常に動作します。他のテスト出力も機能しますが、word
またはtext
を出力しようとするとクラッシュします。私はそれが正しく入力を受けていないと思うが、私は本当によく分からない。
これはおそらく比較的簡単に修正されるので、助けていただければ幸いです。私を助けるためにもう情報が必要な場合は、躊躇しないでください。
を働く必要があることを置けば? –
Logs please .... – andre3wap
私のAndroid携帯電話では「私のアプリケーションが動作を停止しました」と表示されます。 –