I am new to android and just starting through some tutorial videos. My requirement is initially i need to show the textview text to \"red\" and after 5-10 sec, need to chang
Try to Use Handler,
Handler h=new Handler(); h.postDelayed(new Runnable(){ public void run(){ //change your text here } }, time_delay);