java - What Intent is used to send a multi task list from the Action Memo app to the S Planner app? -


What is the intent to send a multi task list to the S Planner app from the Action Memo app on Samsung Galaxy Note 3 (And other related note devices)?

On the Note 3 device, if you open the action memo, write a list of items on several lines, then press the Action button link, then select the task, then send the data to the S Planner. , Which convert each line to a different function. What is the effect of using the Action Memo app to pass this information to the S Planner app?

Answer briefly:

I do not believe it is in this case Intent is using.

Long answer:

I intend to pin each one in ActionMemo in the link-to-action menu, with the intention of every other option, the following code snippet provides such intent filters, each of which Can be used in the manifest file to capture:

   & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: scheme = "tele" /> & Lt; / Intent-Filter & gt; & Lt ;! - Contact - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.INSERT" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: mimeType = "vnd.android.cursor.dir / contact" /> & Lt; / Intent-Filter & gt; & Lt ;! - Messaging - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.SENDTO" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: scheme = "smsto" /> & Lt; / Intent-Filter & gt; & Lt ;! - Email - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.SENDTO" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: Schema = "Melto" /> & Lt; / Intent-Filter & gt; & Lt ;! - Browser - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.WEB_SEARCH" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; / Intent-Filter & gt; & Lt ;! - Map - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.VIEW" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: Schema = "Geo" /> & Lt; / Intent-Filter & gt; & Lt ;! - Tasks (one line) - & gt; & Lt; Intent-Filter & gt; & Lt; Action Android: name = "android.intent.action.EDIT" /> & Lt; Category android: name = "android.intent.category.DEFAULT" /> & Lt; Data Android: mimeType = "vnd.android.cursor.item / event" /> & Lt; / Intent-Filter & gt; & Lt ;! - Work (multi-line) - & gt; & Lt ;! - I do not believe it uses an intention for it. - & gt;   

I was able to use these tools to determine how to capture and analyze something, but not all, intentions, and analysis of the manifest files for those applications which Currently receiving these intestines, and also through the use of ADB lockkat.

But even with all of this I am still unable to find the intention of this particular case. I also took the manifest file from the Samsung Spanner app (essentially the modified version of Samsung's standard version of the Android app) and copied every single intent filter from my own manifest file and made sure that the Speller app was a The default app for any purpose was not set in the form and I was still unable to stop an intention for this action. Is being used, then it was meant to be a sure fire way to catch up. As such, I have to conclude that in this particular situation an intent is not being used for communication between these two apps.

If someone else has more information, feel free to comment.

EDIT: Nothing seems to add to anyone, so I am accepting my answer.

Comments

Popular posts from this blog

java - ImportError: No module named py4j.java_gateway -

python - Receiving "KeyError" after decoding json result from url -

.net - Creating a new Queue Manager and Queue in Websphere MQ (using C#) -