How to add my application to the list of applications that can open images?












-1















When an application on a device tries to share an image, opens a list of applications that can do something with that image: publish it on social networks, edit, etc. What should I add to the manifest file of my application in order to add my application to this list? And, basically, it is interesting what to add to the config.xml in the PhoneGap project.










share|improve this question























  • its called deeplinking. look into it for images.

    – soldforapp
    Nov 20 '18 at 18:17
















-1















When an application on a device tries to share an image, opens a list of applications that can do something with that image: publish it on social networks, edit, etc. What should I add to the manifest file of my application in order to add my application to this list? And, basically, it is interesting what to add to the config.xml in the PhoneGap project.










share|improve this question























  • its called deeplinking. look into it for images.

    – soldforapp
    Nov 20 '18 at 18:17














-1












-1








-1








When an application on a device tries to share an image, opens a list of applications that can do something with that image: publish it on social networks, edit, etc. What should I add to the manifest file of my application in order to add my application to this list? And, basically, it is interesting what to add to the config.xml in the PhoneGap project.










share|improve this question














When an application on a device tries to share an image, opens a list of applications that can do something with that image: publish it on social networks, edit, etc. What should I add to the manifest file of my application in order to add my application to this list? And, basically, it is interesting what to add to the config.xml in the PhoneGap project.







android cordova phonegap






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 20 '18 at 18:14









Inga BuhtilovaInga Buhtilova

85




85













  • its called deeplinking. look into it for images.

    – soldforapp
    Nov 20 '18 at 18:17



















  • its called deeplinking. look into it for images.

    – soldforapp
    Nov 20 '18 at 18:17

















its called deeplinking. look into it for images.

– soldforapp
Nov 20 '18 at 18:17





its called deeplinking. look into it for images.

– soldforapp
Nov 20 '18 at 18:17












2 Answers
2






active

oldest

votes


















0














In order to register your application capable to do certain tasks like open images from storage, you need to add the following code inside the activity tag that can do that task:



<activity android:name=".MyImageActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>


Intent filters inform the system what intents an application component is willing to accept.



You can find more information on the official developer website: https://developer.android.com/training/sharing/receive






share|improve this answer
























  • Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

    – Inga Buhtilova
    Nov 21 '18 at 16:41













  • If the code has solved your problem, please mark it as an answer so that it can help others as well.

    – Pankaj Sati
    Nov 21 '18 at 18:43











  • Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

    – Pankaj Sati
    Nov 21 '18 at 18:43













  • You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

    – Inga Buhtilova
    Nov 21 '18 at 20:00





















0














Take a look for this url May be it is help you for your solution



Open with menu






share|improve this answer
























  • Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

    – Inga Buhtilova
    Nov 21 '18 at 16:27











  • Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

    – Inga Buhtilova
    Nov 21 '18 at 16:49











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399096%2fhow-to-add-my-application-to-the-list-of-applications-that-can-open-images%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














In order to register your application capable to do certain tasks like open images from storage, you need to add the following code inside the activity tag that can do that task:



<activity android:name=".MyImageActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>


Intent filters inform the system what intents an application component is willing to accept.



You can find more information on the official developer website: https://developer.android.com/training/sharing/receive






share|improve this answer
























  • Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

    – Inga Buhtilova
    Nov 21 '18 at 16:41













  • If the code has solved your problem, please mark it as an answer so that it can help others as well.

    – Pankaj Sati
    Nov 21 '18 at 18:43











  • Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

    – Pankaj Sati
    Nov 21 '18 at 18:43













  • You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

    – Inga Buhtilova
    Nov 21 '18 at 20:00


















0














In order to register your application capable to do certain tasks like open images from storage, you need to add the following code inside the activity tag that can do that task:



<activity android:name=".MyImageActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>


Intent filters inform the system what intents an application component is willing to accept.



You can find more information on the official developer website: https://developer.android.com/training/sharing/receive






share|improve this answer
























  • Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

    – Inga Buhtilova
    Nov 21 '18 at 16:41













  • If the code has solved your problem, please mark it as an answer so that it can help others as well.

    – Pankaj Sati
    Nov 21 '18 at 18:43











  • Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

    – Pankaj Sati
    Nov 21 '18 at 18:43













  • You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

    – Inga Buhtilova
    Nov 21 '18 at 20:00
















0












0








0







In order to register your application capable to do certain tasks like open images from storage, you need to add the following code inside the activity tag that can do that task:



<activity android:name=".MyImageActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>


Intent filters inform the system what intents an application component is willing to accept.



You can find more information on the official developer website: https://developer.android.com/training/sharing/receive






share|improve this answer













In order to register your application capable to do certain tasks like open images from storage, you need to add the following code inside the activity tag that can do that task:



<activity android:name=".MyImageActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>


Intent filters inform the system what intents an application component is willing to accept.



You can find more information on the official developer website: https://developer.android.com/training/sharing/receive







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 20 '18 at 18:28









Pankaj SatiPankaj Sati

1364




1364













  • Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

    – Inga Buhtilova
    Nov 21 '18 at 16:41













  • If the code has solved your problem, please mark it as an answer so that it can help others as well.

    – Pankaj Sati
    Nov 21 '18 at 18:43











  • Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

    – Pankaj Sati
    Nov 21 '18 at 18:43













  • You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

    – Inga Buhtilova
    Nov 21 '18 at 20:00





















  • Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

    – Inga Buhtilova
    Nov 21 '18 at 16:41













  • If the code has solved your problem, please mark it as an answer so that it can help others as well.

    – Pankaj Sati
    Nov 21 '18 at 18:43











  • Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

    – Pankaj Sati
    Nov 21 '18 at 18:43













  • You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

    – Inga Buhtilova
    Nov 21 '18 at 20:00



















Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

– Inga Buhtilova
Nov 21 '18 at 16:41







Thank you, this works, but if you also know how to handle intent (to upload the image which one app will share, to the Canvas in a target app), please, tell me. Cordova plugin cordova-plugin-intent gives possibility to handle the Intent, but i don't know how it must be written. How to take the image from intent and put it in to the Canvas on a html page in the app

– Inga Buhtilova
Nov 21 '18 at 16:41















If the code has solved your problem, please mark it as an answer so that it can help others as well.

– Pankaj Sati
Nov 21 '18 at 18:43





If the code has solved your problem, please mark it as an answer so that it can help others as well.

– Pankaj Sati
Nov 21 '18 at 18:43













Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

– Pankaj Sati
Nov 21 '18 at 18:43







Regarding your next question, I have not worked with Cordova. But you can receive the data from an intent in your target app pretty easily. Just use getIntent() in onCreate() to access the intent. You can find a working code at developer.android.com/training/sharing/receive

– Pankaj Sati
Nov 21 '18 at 18:43















You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

– Inga Buhtilova
Nov 21 '18 at 20:00







You can find a working code at - not the same what i need. It is describes how to receive the data in java, but i need to use it in a javascript function. I know, what to use for that (cordova-plugin-intent), but i don't know the syntax, what exactly must be written in a function, how to call that data. My problem is not solved, but your answer is completely an answer to my question how it was asked, thank you.

– Inga Buhtilova
Nov 21 '18 at 20:00















0














Take a look for this url May be it is help you for your solution



Open with menu






share|improve this answer
























  • Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

    – Inga Buhtilova
    Nov 21 '18 at 16:27











  • Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

    – Inga Buhtilova
    Nov 21 '18 at 16:49
















0














Take a look for this url May be it is help you for your solution



Open with menu






share|improve this answer
























  • Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

    – Inga Buhtilova
    Nov 21 '18 at 16:27











  • Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

    – Inga Buhtilova
    Nov 21 '18 at 16:49














0












0








0







Take a look for this url May be it is help you for your solution



Open with menu






share|improve this answer













Take a look for this url May be it is help you for your solution



Open with menu







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 21 '18 at 14:09









prashant kuteprashant kute

194




194













  • Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

    – Inga Buhtilova
    Nov 21 '18 at 16:27











  • Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

    – Inga Buhtilova
    Nov 21 '18 at 16:49



















  • Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

    – Inga Buhtilova
    Nov 21 '18 at 16:27











  • Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

    – Inga Buhtilova
    Nov 21 '18 at 16:49

















Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

– Inga Buhtilova
Nov 21 '18 at 16:27





Thank you, but it remains unclear in a part "Do something with the File". What should be added to the function (Intent) to upload some image/* from this Intent to Canvas in this app? Example will be helpfull

– Inga Buhtilova
Nov 21 '18 at 16:27













Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

– Inga Buhtilova
Nov 21 '18 at 16:49





Just any example, if it possible, where i can see, how to use the data from intent in a JavaScript function. I even can't get how to call this image from intent in a handle intent function

– Inga Buhtilova
Nov 21 '18 at 16:49


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53399096%2fhow-to-add-my-application-to-the-list-of-applications-that-can-open-images%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter