シンプルなカウンターを作りたい。画面をクリックすると、テキスト値の値が増加します。
というわけで私の活動。
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);
}
}
しかし、そのクラッシュ。私は初心者です、助けてください。