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

No friends can see what i shared on facebook (through android)

I created a music player. In the app, there is a feature where user can share what songs they are listening to. I STRICTLY followed this official guide from facebook's developer's page. Sharing is working fine. But none of my friends can see the…
denvercoder9
  • 2,979
  • 3
  • 28
  • 41
0
votes
1 answer

Sharing image from webview to whatsapp

I have created an app which shows multiple webpages. I want that app to share image which is displayed on that webpage with whatsapp and other IM messengers, for that i have added a context menu and have implemented ACTION_SEND but it didn't work.…
Rahul
  • 57
  • 11
0
votes
1 answer

native sharing dialogue on android webview? is it possible?

Can I have a button that calls the android native share dialogue on android webview? For example uing Javascript in the webview and call my android function? If so, how can I make it? Thanks!
user2335065
  • 2,337
  • 3
  • 31
  • 54
0
votes
1 answer

How to share video (.mp4) to social media in Android App?

I've looked in stackoverflow and saw some posts on how to share a video from the phone to another app, but none seem to work. I followed the following guide: http://sudarmuthu.com/blog/sharing-content-in-android-using-action_send-intent/ but this…
code
  • 5,294
  • 16
  • 62
  • 113
0
votes
1 answer

How can I be sure my file stays around long enough to be shared?

The application I'm working on allows the user to share images, which it accomplishes using an ACTION_SEND Intent. Everything works fine, unless the activity that handles the intent returns before the file is actually shared. For example. If I share…
Tester101
  • 8,042
  • 13
  • 55
  • 78
0
votes
1 answer

how can I know sharing intent done?

I want share something (plain text) via all sharing app in android. and this is my code Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND); sharingIntent.setType("text/plain"); String shareBody =…
0
votes
1 answer

How to allow VideoView to continue playing when using Share? Android

I have a video playing full screen in the Android application. I've added a button to allow the user to bring up the "Share" dialog to share to social media, texting, or e-mail. However, when the user selects, for example Facebook, the video will…
code
  • 5,294
  • 16
  • 62
  • 113
0
votes
1 answer

After sharing on Facebook, App forced close

I am using sharingIntent to share a link on apps. When I click the button, it brings sharing window and I share the link correctly. After, sharing process, my app doesnt open and crashes. I am using intent.getExtras() to identify image and imageurl.…
newComer
  • 111
  • 6
0
votes
0 answers

Can anyone share an idea about how to share image from ImageView in ViewPager using UIL library?

Am using UIL library to display my images in viewpager and as well as for also zooming the images.In that I want to add a share button to share the images to fb,gmail,twitter,whatsapp etc., in that when i tried to share an image from the page means…
Sabari Karthik
  • 184
  • 3
  • 8
  • 24
0
votes
0 answers

Storing & sharing music history between devices

I am writing an Android app for uni (semester project). The idea is to be able to compare music "taste" between nearby devices. Long story short it's somewhat similar to Last.fm, but the idea is to be able to do similar things but for nearby…
0
votes
1 answer

How to stop Activity from reloading when using Intent.createChooser() to launch a sharing menu?

I have a WebView which has an sharing icon at the bottom of the page. When the user presses the icon, it launches a sharing menu: chooserIntent = Intent.createChooser(targetedShareIntents.remove(0), "Share…
Sourav
  • 1,214
  • 14
  • 24
0
votes
1 answer

ShareCompat.IntentBuilder Google+ sharing in full screen?

I'm using the following code to post in Google+: Intent shareIntent = ShareCompat.IntentBuilder.from(MainActivity.this) .setText("This is a sample test" .setSubject("This is my subject") .setType("text/plain") .getIntent() …
Bagusflyer
  • 12,675
  • 21
  • 96
  • 179
0
votes
2 answers

Android ShareActionProvider Set Text Color

Is there a style that works with the Android ShareActionProvider that allows the text to be white instead of black. I have tried: @android:color/white
0
votes
1 answer

Android share screenshot with text on facebook wall

Hello friends i am facing problem with sharing functionality on facebook wall. I am sharing text and image, which is a captured screen of my application. But i unable to share text using following code. Please help me to solve this problem. Intent…
Yasmik
  • 57
  • 2
  • 10
0
votes
1 answer

Bitmap image sharing on Facebook wall

I want to share screenshot of my application screen with some details like title,description on facebook wall. Please any one can help me how can i do this? I want to use facebookSDK. If any other options available for sharing please help me.
Yasmik
  • 57
  • 2
  • 10