android-sharing Questions
16
I want to share Text + Image together using ACTION_SEND in android, I am using below code, I can share only Image but i can not share Text with it,
private Uri imageUri;
private Intent intent;
i...
Cordage asked 2/12, 2013 at 16:35
5
I have been trying to solve a problen with sharing image from external storage directory. it works in most of the devices, but It is not working in others.
I have:
1. Added a class extending FilePr...
Newfashioned asked 11/6, 2020 at 11:24
1
I have been trying to share one image from external storage and it is not working in API 29. the error message is: Permission denial, the file requires the provider be exported, or grantUriPermissi...
Gwendagwendolen asked 11/6, 2020 at 19:42
2
Solved
I keep getting this error when trying share an image file:
java.lang.RuntimeException: android.os.TransactionTooLargeException: data parcel size 1085992 bytes
I assumed a fix for this would be to...
Gatefold asked 25/1, 2018 at 22:49
0
When press on share button It opens the sharing dialog box as shown below,
When press on youtube it share video on youtube as shown below,
The thing I want is that by pressing share button it...
Among asked 21/4, 2020 at 7:44
2
I am not able to share any photo on Instagram feed using Intent in Android. It opens Instagram and shows "Unable to load Photo" error and comes back to my app.
Intent share = new Intent(Intent.A...
Dandruff asked 24/3, 2020 at 7:40
12
Solved
How can you filter out specific apps when using the ACTION_SEND intent? This question has been asked in various ways, but I haven't been able to gather a solution based on the answers given. Hopefu...
Biogenesis asked 16/3, 2012 at 0:33
2
Solved
I am beginner in android studio and i think it will be easy but also I am not getting that
How to share image from link ,i.e, without downloading the image just share on social media like whats ap...
Illbred asked 1/9, 2018 at 15:32
3
Solved
im trying to make an app that will ask the user to pick a image file and then send it via intent to another app (Whatsapp in this case but this should work with other apps)
Im doing this to reques...
Nellenelli asked 6/7, 2018 at 10:34
1
I have tried to make my own Chooser Activity to replace androids share to... popup.
I took a look at ChooserActivity extends ResolverActivity and tried to copy the code. In my manifest I have
&l...
Dato asked 2/7, 2018 at 14:48
1
Solved
I got following Exception while sharing images using FileProvider. Following is the code I used to.
{
ArrayList<Uri> files = new ArrayList<Uri>();
files.add(getImageUriFromCache(co...
Subvene asked 11/8, 2015 at 13:28
1
Solved
I tried many ways but I can't do this.
I have a *.txt file. I want to share it via Bluetooth, wifi, email and ....
When i used this code i cant share the file:
File file = new File(Environment.get...
Virgel asked 3/3, 2017 at 5:45
10
Solved
I have an Android app and it supports sending text via other apps. It therefore uses the ACTION_SEND intent and the EXTRA_TEXT field. The chooser presents me with all apps that can handle such an i...
Pyramid asked 18/8, 2010 at 18:10
1
except whatsapp, my app is sharing content to all other application like hike hangout mail, messenger etc..
my compile sdk and target sdk is 23
this is my code
if (url.startsWith("share://")) {
...
Vena asked 29/7, 2016 at 6:50
3
I want to share a text clicking on which the user will navigate to a url via android share intent.
For example:
"Visit google for more info."
In above text, on clicking google, user will be red...
Inviolate asked 12/7, 2016 at 7:12
5
Solved
i am calling an intent to share an image. this works with most providers, BUT with Google+. Google+ opens the post activity without the image and displays the toast "You can only post photos stored...
Burnie asked 30/3, 2012 at 1:42
3
Solved
I am trying to share a screenshot of the application using the following code:
View content = findViewById(R.id.layoutHome);
content.setDrawingCacheEnabled(true);
Bitmap bitmap = content.getDrawin...
Titled asked 10/10, 2013 at 21:19
2
I have read, http://developer.android.com/guide/components/tasks-and-back-stack.html and I have looked up the documentation for FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET, but I still do not understand wh...
Coyle asked 20/1, 2014 at 10:42
2
Solved
Is there a way to confirm if a Share intent in Android was successful or unsuccessful? (For example, if I share a Facebook post, I'd like to know if it was successfully posted or know if it was can...
Pius asked 2/12, 2014 at 3:10
3
Solved
I'm trying to share a photo using Facebook's new SharePhoto & SharePhotoContent classes in the new SDK.
I'd like to use an image URL instead of a locally stored image.
I am able to share an i...
Converter asked 3/4, 2015 at 2:33
3
Solved
As anyone who's tried to share to Facebook via Android knows, the Facebook team has decided to disregard the protocol for sharing and ignores the text provided in the share intent (see: Share Text ...
Nilotic asked 30/4, 2014 at 20:51
1
Solved
I get this exception just after sharing content to my app and just in the case when the app is already started.
If I start the app directly all the things work good.
If I share something to my app ...
Rob asked 20/3, 2014 at 1:0
2
Solved
I am trying to use Intent for sharing.It works well with single image or when I use Intent.ACTION_SEND.
But when i use Intent.ACTION_SEND_MULTIPLE It does not seems to work on Facebook for e.g I a...
Viola asked 15/9, 2014 at 10:57
2
Solved
I am trying to allow the user to share an image to other apps on the device. The image is inside the files/ subdirectory of my app's internal storage area. It works just fine with Gmail, but Facebo...
Peppel asked 12/6, 2014 at 23:49
1
Solved
I'm trying to share some text and image via the Twitter app. The image source is a web url.
Below is my code:
sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setTyp...
Levona asked 26/6, 2014 at 17:11
1 Next >
© 2022 - 2025 — McMap. All rights reserved.