我对Android的Java很新(所以请不要打败我),我对我的按钮操作有疑问。被调用的方法只运行一次。当我第二次点击按钮时,没有任何事情发生了。我不懂为什么。没有错误,没有缺陷,方法正在做预期的事情。任何提示? 谢谢!
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
TextView mainFortuneTextView;
Button mainFortuneButton;
private int counter, i, x;
//private int randomNumber;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
// 1. Access the TextView defined in layout XML
// and then set its text
mainFortuneTextView = (TextView) findViewById(R.id.fortuneTextView);
// 2. Access the Button defined in layout XML
// and listen for it here by using "this"
mainFortuneButton = (Button) findViewById(R.id.fortuneButton);
mainFortuneButton.setOnClickListener(this);
}
@Override
public void onClick(View v) {
// happens on button action in main view
runThread();
Random rnd = new Random();
x = rnd.nextInt(11) + 1;
}
private void runThread() {
mainFortuneButton.setEnabled(false);
new Thread() {
public void run() {
while (i++ < 10) {
try {
runOnUiThread(new Runnable() {
@Override
public void run() {
mainFortuneTextView.setText("#" + i);
}
});
Thread.sleep(100);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
// activate button again
runOnUiThread(new Runnable() {
@Override
public void run() {
mainFortuneButton.setEnabled(true);
}
});
}
}.start();
}
}
答案 0 :(得分:2)
您的while中使用的变量delete myThing1;
是一个字段。这意味着它不会重置。这就是为什么第二次调用线程时i
值为10,并且不再调用它。在开始新主题之前,您必须重新设置i
。