Launch OneNote using Share Intent in Android -
apparently microsoft has added share intent support onenote android app: http://www.xda-developers.com/massive-facelift-to-microsoft-onenote-for-android-brings-share-intent-and-multi-window-support/
how can use share intent on android launch onenote app?
you can not directly launch onenote through share intent. behaviour occurs is:
content sent onenote app
page created title matching
extra_subject
, body sent inextra_text
.low priority notification indicating page has been created fires. target set open onenote view page activity.
i suppose if asked notifications permission intercept notification , open onenote @ point.
if want open onenote, why not use like:
string onpackagename = "com.microsoft.office.onenote"; intent launchintent = getpackagemanager(). getlaunchintentforpackage(onpackagename); startactivity(launchintent);
Comments
Post a Comment