You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to bpgc-androi...@googlegroups.com
Here is a small code snippet if you want to incorporate a delay in your applications.
Handler handler = new Handler(); handler.postDelayed(new Runnable() { public void run() { //TODO: Whatever you want to do after the delay
// most of the tym we call the same function with // updated parameters. } }, time_in_milli_second);