• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps how to set timer in android application

ritusingh

Lurker
Hi Frens,

can anyone please tel me how to set timer in android application?
i have followed the code given below but it is not responding-

Timer t=new Timer();
im1=new ImageView(this);
TimerTask t1=new TimerTask()
{
synchronized
public void run()
{
im1.setImageResource(R.drawable.b);
setContentView(im1);

}

};
t.schedule(t1, 2*1000);
this code is not working.
so please anybody help me out.

thanx-
Ritu Singh
 
Back
Top Bottom