sharing information on windows phone 7 like android's ACTION_SEND -
i'm trying port android application windows. in android, there way start activity action_send flag i.e.
intent intent = new intent(android.content.action_send); intent.settype("text/plain"); intent.putextra(android.content.intent.extra_text, "...."); startactivity(intent.createchooser(intent, "subject"))
when this, list of applications (i.e. facebook, text messaging, twitter, evernote, etc...) can receive passed in information presented. user selects 1 , information can shared thus.
is there analogous in windows phone 7?
yes, windows phone 7 have similar. take @ launchers , choosers.
with launchers, can launch application not information newly launched application after ends. similar startactivity in android. choosers, can receive information back, similar startactivityforresults. there bunch of launchers , choosers available.
Comments
Post a Comment