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

Search results

  1. R

    Apps how to set timer in android application

    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() {...
  2. R

    Apps how to move to another activity in android application

    Hi Frens... Can anyone please tell me that how to move from one activity to another using the class intent. i have followed the code:- Intent intent=new Intent(); in.setClass(this.MainActivity,subactivity.class); startActivity(intent); this code is not working . what changes should i made so...