i'm trying to set text of text view in a while loop as
t = (TextView)findViewById(R.id.textView1);
while(true)
{
t.setText(hr+":"+":"min+":"+sec);
try{
Thread.sleep(1000);
}
catch(Exception e){}
}
But while running the app text is not changing. when i removed the while loop then it was setting
text correctly.
why was so? Plz Help!!!!!!!!!strong text