How to add my application to the list of applications that can open images?
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.

add a comment |
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.

its called deeplinking. look into it for images.
– soldforapp
Nov 20 '18 at 18:17
add a comment |
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.

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.


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
add a comment |
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
add a comment |
2 Answers
2
active
oldest
votes
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
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 plugincordova-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
add a comment |
Take a look for this url May be it is help you for your solution
Open with menu
Thank you, but it remains unclear in a part "Do something with the File". What should be added to thefunction (Intent)
to upload someimage/*
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
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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
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 plugincordova-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
add a comment |
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
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 plugincordova-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
add a comment |
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
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
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 plugincordova-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
add a comment |
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 plugincordova-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
add a comment |
Take a look for this url May be it is help you for your solution
Open with menu
Thank you, but it remains unclear in a part "Do something with the File". What should be added to thefunction (Intent)
to upload someimage/*
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
add a comment |
Take a look for this url May be it is help you for your solution
Open with menu
Thank you, but it remains unclear in a part "Do something with the File". What should be added to thefunction (Intent)
to upload someimage/*
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
add a comment |
Take a look for this url May be it is help you for your solution
Open with menu
Take a look for this url May be it is help you for your solution
Open with menu
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 thefunction (Intent)
to upload someimage/*
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
add a comment |
Thank you, but it remains unclear in a part "Do something with the File". What should be added to thefunction (Intent)
to upload someimage/*
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
its called deeplinking. look into it for images.
– soldforapp
Nov 20 '18 at 18:17