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"行,按钮点击后程序强制关闭。
答案 0 :(得分:1)
简单错误
ax.setText(String.valueOf(x));