如何在此处更改textview文本

时间:2015-03-20 12:10:42

标签: android button textview forceclose

Fibonacci系列程序,在按钮点击时给出下一个数字。我希望TextView给出添加数字的值(ax)。

public void next(View v) {
    TextView ax = new TextView(this); //new
    Button next = (Button) findViewById(R.id.next);
    z = x + y;
    next.setText(String.valueOf(z));
    ax.setText(x); //new
    x = y;
    y = z;
}

添加" new"行,按钮点击后程序强制关闭。

1 个答案:

答案 0 :(得分:1)

简单错误

ax.setText(String.valueOf(x));