1

我希望这不是一个愚蠢的问题。我在清除 TextView 时遇到了一些问题。我环顾四周,每个人都在说 use: textView.setText(""); 在 onCreate 但由于某种原因似乎不起作用。基本上,我的应用程序只接受来自 editText 的数字,然后运行斐波那契数列(单击按钮时)并在 textView 中显示结果。好吧,序列显示正常,但我希望每次单击按钮时都清除文本视图 - 到目前为止,它只是不断向已经存在的内容添加更多文本。

我在放置 textView.setText(""); 在错误的位置?还是我只是错过了其他一些概念?(我也尝试从我的 OnClick 中放置它——这也不起作用)。

这是我的代码:

public class MainActivity extends Activity {

// primary widgets
private EditText editText;
private TextView textView;
private Button button1;

static ArrayList<Integer> fibList = new ArrayList<Integer>();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    editText = (EditText) findViewById(R.id.editText1);
    textView = (TextView) findViewById(R.id.textView2);
    button1 = (Button) findViewById(R.id.button1);

    //Attempt to clear TextView
    textView.setText("");

    button1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            String input = editText.getText().toString();
            int number = Integer.parseInt(input);
            int tmp = 0;

            // confirm input
            if (number < 20) {
                Toast.makeText(getApplicationContext(),
                        "You entered: " + number, Toast.LENGTH_LONG).show();
                for (int i = 0; i <= number; i++) {
                    fibList.add(fib(i));

                    // sum even numbers
                    if (fib(i) % 2 == 0) {
                        tmp += fib(i);

                    }

                }
            } else {
                Toast.makeText(getApplicationContext(),
                        "Number is too Large: " + number, Toast.LENGTH_LONG)
                        .show();
            }
            String array = fibList.toString();
            textView.setText(array);

        }

    });

}

// run fibonacci sequence
public static int fib(int n) {
    if (n < 2) {
        return n;
    } else {
        return fib(n - 1) + fib(n - 2);
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}

4

3 回答 3

1

如果您想TextView清除每个按钮单击,那么.setText必须进入您onClick。您将其放入.setText您的原因是在onCreate您的活动创建后立即清除文本,但由于您的按钮尚未被按下,因此您还没有任何要清除的内容,因此setText不会执行任何操作。此外,由于您onCreate的活动只会运行一次,因此它永远不会setText再次运行。尝试以下操作:

    public class MainActivity extends Activity {

// primary widgets
private EditText editText;
private TextView textView;
private Button button1;

static ArrayList<Integer> fibList = new ArrayList<Integer>();
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    editText = (EditText) findViewById(R.id.editText1);
    textView = (TextView) findViewById(R.id.textView2);
    button1 = (Button) findViewById(R.id.button1);



    button1.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            textView.setText(""); //Clear the TextView
            fibList.clear(); //Clear your array list before adding new elements

            String input = editText.getText().toString();
            int number = Integer.parseInt(input);
            int tmp = 0;

            // confirm input
            if (number < 20) {
                Toast.makeText(getApplicationContext(),
                        "You entered: " + number, Toast.LENGTH_LONG).show();
                for (int i = 0; i <= number; i++) {
                    fibList.add(fib(i));

                    // sum even numbers
                    if (fib(i) % 2 == 0) {
                        tmp += fib(i);

                    }

                }
            } else {
                Toast.makeText(getApplicationContext(),
                        "Number is too Large: " + number, Toast.LENGTH_LONG)
                        .show();
            }
            String array = fibList.toString();
            textView.setText(array);

        }

    });

}

// run fibonacci sequence
public static int fib(int n) {
    if (n < 2) {
        return n;
    } else {
        return fib(n - 1) + fib(n - 2);
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

}
于 2013-05-09T16:51:30.497 回答
0

在向它添加新结果之前,您需要清除按钮单击事件上的 textView。按以下方式执行:

    button1.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
        textView.setText("");  //<<<<<< clear TextView on Button Click
        .....
于 2013-05-09T16:50:51.930 回答
0

问题更可能出现在未清除的 fibList 中

于 2013-05-09T16:53:22.863 回答