我想製作一個簡單的計數器。當我點擊屏幕時,textvalue的值會增加。當點擊屏幕時更改TextView值
所以我的活動。
public class MyTasbih extends Activity implements View.OnClickListener {
//Button btn;
TextView t;
int i=0;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//btn=(Button)findViewById(R.id.button);
t=(TextView)findViewById(R.id.t);
//btn.setOnClickListener(this);
t.setOnClickListener(this);
updateCounter();
}
public void onClick(View view) {
i++;
updateCounter();
}
private void updateCounter() {
t.setText(i);
}
}
但它的崩潰。我是新手,請幫忙。
有Eclipse的一個觀點叫做logcat的。你可以在那裏看到它崩潰的地方。 – Ran