Questions tagged [android-sharing]

In Android, sharing is the action of sending data (text, images, &c) to a different application or device (often chosen from a list of available targets instead of explicitly chosen).

Sharing can generally be accomplished with Intents, or via a specialized widget called a ShareActionProvider.

Developer Guide: Building Apps with Content Sharing

315 questions
0
votes
0 answers

Android - Can not share image in Facebook using ACTION_SEND

I could understand from various post that it is not possible to share both the image and text data in Facebook through intent share. But Twitter is able to share both thumbnail and text in Facebook through intent share which is shown in the image.…
Sadeshkumar Periyasamy
  • 4,848
  • 1
  • 26
  • 31
0
votes
1 answer

Changing the menu icon-color/icon in Android Easy Share Action

I am trying to implement Easy Share Action for my Android application as describe in here. I was able to complete it successfully. But I need to change the Sharing Menu Item icon color or even icon. According to the given document we don't provide…
AnujAroshA
  • 4,623
  • 8
  • 56
  • 99
0
votes
1 answer

How to share a image from getFilesDir() folder with SHARE INTENT?

i'm storing images that i download from internet here: getContext().getFilesDir().getAbsolutePath(); I need to share some of these images with android share intent (ACTION_SEND), but for some reason, the intent can't access to these images. How can…
NullPointerException
  • 36,107
  • 79
  • 222
  • 382
0
votes
1 answer

How to share a image from Application Cache with ContentProvider

i have a ContentProvider on my app, i use it to share images from assets folder. I used the solution proposed here: http://www.nowherenearithaca.com/2012/03/too-easy-using-contentprovider-to-send.html Now i need to share images stored on the cache…
0
votes
1 answer

Share text and image on twitter and email does not load the image in android 4.4 ACTION_SEND

I have made ​​the share text and picture on twitter with the intent ACTION_SEND, my images are accessed from my assets folder, for permission to access these resources have implemented a content provider and assigned permissions have, I tested the…
alfredo chuc
  • 129
  • 1
  • 5
0
votes
1 answer

How to use the Share icon along with overflow menu

I am trying to implement the Share icon along with my overflow menu on the app. But the share icon is gray and I am unable to click on it. My menu XML:
Si8
  • 9,141
  • 22
  • 109
  • 221
0
votes
1 answer

LinkedIn Social auth Image sharing error

I am trying to share the image on the LinkedIn using the Socialauth API. I have already posted the Text successfully. But while i tried to share the image using its method adapter.uploadImage(message, fileName, bitmap, quality); ,its throwing "Image…
GrIsHu
  • 29,068
  • 10
  • 64
  • 102
0
votes
3 answers

how to share a single photo in android?

I am sharing a single photo to the facebook,twitter,Linkedin,picasa. I can share text without any problem.Can any one explain with some example how to share a single photo.For the moment I am using the following code (Adding an Easy Share…
0
votes
1 answer

Title of activity receiving data from intents

I added activity that receives intents with data, this is how it looks like in manifest
0
votes
1 answer

Android how to share an image with some text?

On Official documentation they described how to share multiple images, but what I wanna do is share a screenshot and a link to the app, I am able to take screenshot and share it without any problem, but when it comes to adding text, it doesn't work,…
Ahmad Dwaik 'Warlock'
  • 5,953
  • 5
  • 34
  • 56
0
votes
1 answer

Unable to share on Facebook

I have integrated Facebook SDK into my project. I have followed all the steps mentioned in https://developers.facebook.com/docs/android/getting-started/facebook-sdk-for-android/ . But then also I am not able to share on facebook. I have generated…
Vaibs
  • 1,128
  • 3
  • 16
  • 36
0
votes
0 answers

Using Facebook api to make a share button

I want to make a share button to share a photo from my app directly to the users facebook, assuming they have it installed and are logged in. But the tutorial on the facebook api guide only has one that requires the user to log in, which I don't…
0
votes
1 answer

Android sharing image not working

I'm trying to share an image in an app I have made that downloads an Image and writes it to a file. But any time I try to share it, it says can't upload file or just does nothing. It's not coming up in the logcat so I'm kinda stuck for ideas on how…
Cob50nm
  • 911
  • 2
  • 9
  • 27
0
votes
1 answer

Android sharing options

I'm writing an app with sharing functionality and I want to have a button to share via a specific social media ie. Facebook, without having to open a chooser. Is there anyway to do this? I've been having a look through the source code to see if I…
Cob50nm
  • 911
  • 2
  • 9
  • 27
0
votes
1 answer

Get sharing status of content in android

I want to share content in Android, so I use following code for sharing: Intent sharingIntent = new Intent(Intent.ACTION_SEND); sharingIntent.setType("text/plain"); sharingIntent.putExtra( android.content.Intent.EXTRA_TEXT,…
Kartik Bhatt
  • 924
  • 4
  • 16
  • 33
1 2 3
20
21