Wednesday 27 February 2013

android:Timer


final Handler h2 = new Handler();
h2.postDelayed(new Runnable() {
       public void run() {
           Toast.makeText(getApplicationContext(), "timer running", Toast.LENGTH_LONG).show();
       }
   },2000);

No comments:

Post a Comment