Wednesday, 15 June 2011

android - Showing progress bar when waiting on chooser -



android - Showing progress bar when waiting on chooser -

i have app share images in applications. takes while load chooser pick app share it. want inquire if there simple way add together progress bar when loading chooser. code sharing:

private void share(uri uri, string format) { seek { intent shareintent = new intent(); shareintent.setaction(intent.action_send); shareintent.putextra(intent.extra_stream,uri); shareintent.settype("image/"+format); shareintent.addflags(intent.flag_grant_read_uri_permission); startactivity(intent.createchooser(shareintent,"share with")); } grab (exception e) { e.printstacktrace(); }

i finaly found solution. show progress bar when calling share function , hiding in onpause - pause called in moment chooser on screen. hope help someone.

android progress-bar

No comments:

Post a Comment