facebook - How to confirm Android Share Intent is successful or complete -


is there way confirm if share intent in android successful or unsuccessful? (for example, if share facebook post, i'd know if posted or know if cancelled.)

below android intent code use share. currently, launches dialog allow user choose app share to:

intent shareintent = new intent(android.content.intent.action_send); shareintent.settype("text/plain"); shareintent.putextra(android.content.intent.extra_subject, subject); shareintent.putextra(android.content.intent.extra_text, body);     activity.startactivity(intent.createchooser(shareintent, title)); 

personally, "use startactivityforresult()" , check gets returned. however, can read more here, it's not simple that. if intent cancelled user, same number returned if intent completed (for appications).

ultimately, @ moment simpler share intent in general, cannot check if it's successful or not.


Comments

Popular posts from this blog

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

c++ - OpenMP unpredictable overhead -

javascript - Wordpress slider, not displayed 100% width -