-1

我有一个有时间限制的问题游戏。如果 else= 我如何编码= 如果他回答正确,他将打算进入下一个级别,如果他在 10 秒内没有回答,他将打算在另一个班级

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.easyone);
    a1 = (Button) findViewById(R.id.btn_ea1);
    b1 = (Button) findViewById(R.id.btn_eb1);
    c1 = (Button) findViewById(R.id.btn_ec1);

    a1.setOnClickListener(new View.OnClickListener() {

        @Override   
           public void onClick(View v) {
                Toast.makeText(getApplicationContext(),"CORRECT!",
                        Toast.LENGTH_SHORT).show();
                Intent intent = new Intent(getApplicationContext(),EasyTwo.class);
                startActivity(intent);
        }
    });

}

} *\

4

1 回答 1

1
         new CountDownTimer(3000, 100) {
         public void onFinish() {

          }

        @Override
        public void onTick(long arg0) {
            // TODO Auto-generated method stub

        } 
        }.start();
于 2013-07-29T10:13:14.710 回答