Questions tagged [share-intent]
106 questions
0
votes
0 answers
why Intent.ACTION_SEND dialog has second delay?
ProgressDialog progressDialog = new ProgressDialog(context);
progressDialog.setMessage("Waitting...");
progressDialog.show();
//sharing implementation
Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
// what type of data needs…

LeoYe
- 1
- 2
0
votes
1 answer
i want to share image from my android app on facebook, but not upload this image
not upload image to facebook , instagram ect.
hello friends,
why my image not upload anywhere app?
share image to facebook and ect
this is my code

Kerem Can
- 31
- 2
- 6
0
votes
1 answer
Android Share Intent is Blank for facebook
In my app i have share feature to share simple text. Its work for all app but when send on fb its blank. there is no message display.
Below is my code -
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
…

Ravi Bhandari
- 4,682
- 8
- 40
- 68
0
votes
1 answer
send text containt of the webpage instead of url in android webview app
I have an Android WebView app and i have added share action in it, which shares URL of the current page of the webview. but i want it to send text content of the page instead of URL. please help me with share intent. following is my code for share…

sagar chaudhary
- 33
- 1
- 12
0
votes
1 answer
share intent for image in android
This is my code:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.sharebutton:
shareImage();
break;
default:
return…

mansi mervana
- 33
- 1
- 8
0
votes
1 answer
Receive a plain text instead of image
I share a image from social network and catch it with my app (following this link), but it catch a plain text instead of image, i try to parse to uri and url but it didn't work
void handleSendText(Intent intent) {
String sharedText2 =…

Carlos Carrizales
- 2,340
- 3
- 18
- 24
0
votes
1 answer
Android button crashes
I have developed a actionbar share button, however when I run the app the button does work but it crashes the application when I try to share the images with other apps. For example if I share the image with Twitter or message the application just…

Maddie_J
- 171
- 3
- 15
0
votes
2 answers
getActionProvider: item does not implement SupportMenuItem; returning null
I am using appcompat-v7:22.2.0' and an AppCompatActivity. When trying to create a share intent I get the following warning:
W/MenuItemCompat: getActionProvider: item does not implement SupportMenuItem; returning null
In addition while the share…

EnduroDave
- 1,013
- 7
- 18
- 37
-1
votes
1 answer
Share image through share intent to Whatsapp
here is the code through which i am sharing my image or video from an adaptor to WhatsApp it was working fine but now just the toast is shown that whats app not install is there any issue in the code am I missing something?
public void…

Maan Chaudhary
- 29
- 4
-1
votes
1 answer
How share text with image on WhatsApp and Facebook via Share dialog?
I want to share text with image on WhatsApp and Facebook, I did for Whatsapp but the issue is in WhatsApp business because of package com.whatsapp and com.whatsapp.w4b but how to set both at once, and facebook only sent image not text, so to resolve…

Attaullah
- 3,856
- 3
- 48
- 63
-1
votes
1 answer
After share intent, stay on screen & not move to selected application?
I'm beginner in Android and not good at English, but Let me just explain about my situation.
-- What I want --
After share intent from Web browser like Chrome, If I press my app.
I DO NOT WANT TO MOVE TO MY APP
I just want to begin some method…

luckybox7
- 29
- 3
-1
votes
1 answer
How to put main activity on top while using share intent
I have used materialTabHost and viewPager in MainActivity for swipeable tab views.
Also I have added navigation drawer. When I click on any item listed in navigation drawer, it will opens related fragment. and when I click back it will takes me to…

Ravi Bhalodiya
- 1
- 2
-1
votes
1 answer
Intent share not working with image and text sharing
I am using share intent in my application,but i am not able to share image and text,i am using image and text from my json response,but it is not working.i am not getting any error,but the the method for sharing is not working
JSON Response :…

albert
- 251
- 5
- 20
-2
votes
2 answers
how to open installed application from my application for sharing contents
I need to open all applications installed in my phone into my android application for sharing contents, can I find a simple method ?

kinginisreelu
- 17
- 2
-3
votes
1 answer
How do create whatsapp share option in my app
I am new to Android development. I don't know Android Studio and Java. But I am developing an app with the help of Google, YouTube and StackOverflow. Now I want to add share option (Image + text) in my Recyclerview image to Whatsapp.
The image is…

Prasin Prathap
- 37
- 1
- 6