Hi Bhavesh,
Greetings!!!!!!!
Such kind of error occurs when you are doing UI operations on Background Thread. So you need to do such UI operations on UI Thread, You can use runOnUITHread mehtod provided by Android.
runOnUiThread(new Runnable() {
@Override
public void run() {
//UI Operations here
}
});
Let me know if it helps.
Thanks
Vishnu Garg