android asynchronous get foreground activity -


is there (thread safe) method can call java on android give me handle foreground activity background task? able in order safely post toasts on top of top window.

thanks.

you wouldn't have handle foreground ui activity show toast message. can background thread this:

runonuithread(new runnable() {     public void run() {         // make toast, show toast     } }); 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -