I embedded a countdown timer in this code, but it didn
问题 package com.android.tapme; import android.os.Bundle; import android.app.Activity; import android.widget.*; import android.view.*; public class TapMe extends Activity { private int countValue=0; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_tap_me); checkTapValue(); } private void checkTapValue() { Button tapButton=(Button)findViewById(R.id.tapButton); tapButton.setOnClickListener(new View.OnClickListener() {