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
1 answer

How to get the text filled in feedback form of my app to my email address? Please see details

I have made a feedback form in my android app. What I want is that I want to get all the text filled in that form (editText) to be delivered to my email address without opening any other app or so. I was unable to figure out how to do this but then…
user4909407
0
votes
2 answers

Share intent is showing only messaging & bluetooth app. How can I have more options/apps to share with?

I want to add a share feature from within my app. I want to share the link to my app. This is what I've done so far: LinearLayout linearLayoutShareAppContainer = (LinearLayout) findViewById(R.id.share_app_container); …
user4909407
0
votes
1 answer

Android - Using dynamic text field for sharing using chooser dialog

If the user chooses Twitter, I want to send an abbreviated text field (due to character limit). From this SO post -- Branching the Android Share Intent extras depending on which method they choose to share -- I learned that I can implement targeted…
Sean Thomas
  • 129
  • 12
0
votes
1 answer

How to filter specific apps for ACTION_PICK intent and add cancel option

I want to filter specific app for ACTION_PICK and add remove photo option. I can do filter specific app but i can not add remove photo option . i want to default choose app dialog like whatsapp choose profile photo. Whatsapp did it. You can find…
msevgi
  • 4,828
  • 2
  • 24
  • 30
0
votes
1 answer

Unable to share image on Instagram

I have developed an application that allows sharing images in Instagram. The application has no errors when executed but i cant share/upload images in Instagram. I could not figure out where it went wrong. Can someone help me with this. My codings…
marian
  • 277
  • 1
  • 5
  • 17
0
votes
1 answer

Sending a contact .vcf file

i want to send a contact vcf file using the bluetooth and email. I have tried but i keep getting errors. Please help. Thanks This is my sendByBluetooth method. public void sendByBluetooth(){ Intent intent = new Intent(); …
0
votes
1 answer

Share in google plus from android application

I have to share some text and a link from android application for that I have wrote code as follows PlusShare.Builder shareBuilder = new PlusShare.Builder(this); shareBuilder.setType("text/plain"); shareBuilder.setText("text…
droidev
  • 7,352
  • 11
  • 62
  • 94
0
votes
1 answer

How to use BottomSheets to show share dialog

I want to show one share via dialog in my app which shows Intent.ACTION_SEND like this I tried this library. It works fine , but it uses showDialog() to show the share dialog , which is deprecated. I need the exact style of this share window. Is…
dev
  • 1,085
  • 4
  • 19
  • 26
0
votes
1 answer

Catch file sent with Intent

There is an application (Graph Paper) that exports data in PDF to a limited set of applications, among which are Google Drive, Dropbox, GMail etc. but no plain file system or network. So, how to build an application that will be able to catch this…
anatoly techtonik
  • 19,847
  • 9
  • 124
  • 140
0
votes
0 answers

Android Share text on Facebook doesnt work

I have implemented an application and I have a share button to share a text, it´s working properly for all the options but doesnt work when I try to share it on Facebook the screen is empty.. I don´t know why. Any idea how to fix it??
gon250
  • 3,405
  • 6
  • 44
  • 75
0
votes
2 answers

Google+ media sharing throws exception "No Activity found to handle the intent"

i have tried sharing images with g+ android sdk PlusShare.Builder share = new PlusShare.Builder(this); share.setText("hello everyone!"); share.addStream(imageUri); share.setType(mime); startActivityForResult(share.getIntent(), 0); Ref link here…
Arun
  • 273
  • 3
  • 13
0
votes
0 answers

Passing local image to facebook wall

I'm working on image sharing using facebook library to facebook wall and here is my code /** * Function to post to facebook wall * */ public void postToWall() { // post on user's wall. Bundle params = new Bundle(); …
Suresh
  • 427
  • 1
  • 6
  • 22
0
votes
0 answers

Is incentivised sharing allowed / possible?

I would like to encourage user engagement in my app by rewarding them with a once off advantage (a kind of power-up I guess) when they share something on social media (twitter, Google+ or Facebook). My first question is, is this considered…
bbarrett
  • 78
  • 7
0
votes
0 answers

Android ShareActionProvider to share current screenshot

In my Android Application I want to implement functionality of sharing screenshot. For sharing purpose I am using ShareActionProvider as guided by this link :-http://developer.android.com/training/sharing/shareaction.html Code for setting share…
0
votes
2 answers

Not able to share file with whitespace in name in android

I am not able to share audio file in whatsapp if there is any whitespace in the filename. But it works when sharing using email client. For filenames without spaces also it works fine. Below is the code which I am using Intent sharingIntent = new…
Ratan
  • 1,747
  • 2
  • 18
  • 27