Questions tagged [shareactionprovider]

This is a provider for a share action.

This is a provider for a share action.
It is responsible for creating views that enable data sharing and also to show a sub menu with sharing activities if the hosting item is placed on the overflow menu.

Reference page: http://developer.android.com/reference/android/widget/ShareActionProvider.html

163 questions
0
votes
1 answer

Android: Clicking URL not showing my application

I have developed an application in which there is one URL(JSON Link): https://zappos.amazon.com/mobileapi/v1/product/asin/B00LLS8LQU I have shared this URL in whatsApp or any other application. I have two Queries My Query is: When the user clicks…
ojas
  • 2,150
  • 5
  • 22
  • 37
0
votes
1 answer

Android Duplicate Share Buttons (Udacity Sunshine App)

I'm going through this Udacity Android course, and I'm trying to add a share button to the action bar. I followed all the instructions, and for some reason I'm seeing 2 share buttons! Here is the code on github https://github.com/sayo9394/Sunshine…
sayo9394
  • 435
  • 8
  • 18
0
votes
2 answers

Removing ShareActionProvider white border

The ShareActionProvider always got an white border surrounding it. I'm using the support version applied on a Toolbar. ShareActionProvider
Tin Megali
  • 771
  • 5
  • 25
0
votes
1 answer

ShareActionProvider is missing share icon in release build

I have an android app that uses the appcompat.v7 ShareActionProvider. When I run the app frm Android Studio on the device, I see a share icon and I can share my content. As soon as I run the "Generate Singned APK" from the menu and install the apk…
Silas
  • 37
  • 7
0
votes
1 answer

java.lang.ClassNotFoundException: android.widget.shareActionProvider

I am using Android Studio. In the menu.xml I have In…
Katedral Pillon
  • 14,534
  • 25
  • 99
  • 199
0
votes
2 answers

Do any widely used Android apps have Facebook sharing with pre-populated text field?

I'm creating an Android app for a small business owner. I've implemented social sharing with a ShareActionProvider, and I have discovered that Facebook purposely does not allow apps to pre-populate posts. The user must enter their own text. (See…
Timothy Steele
  • 773
  • 1
  • 7
  • 19
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
0 answers

ShareActionProvider with AppCompat and ListFragments

I have recently updated my app to use the AppCompat (v7-22) library in order that I can give my app a Material Design look and feel on all devices. It's all working fine apart from in one activity. I have a BaseActivity with the following…
0
votes
1 answer

change icon to android.support.v7.widget.ShareActionProvider

I want to change the icon of share item in action bar. Here is my menu file:
rerashhh
  • 1,671
  • 1
  • 13
  • 15
0
votes
2 answers

Android ShareActionProvider with ViewPager forces me save Image

I have a big issue with ShareActionProvider. My application is like a gallery application using ViewPager, that keeps track of favorite image items, and gives possibility to share them through ShareActionProvider. Everything works fine except that…
0
votes
1 answer

Share button in action bar only in a single activity

I want share button in action bar only for one activity. The above code displays…
user305774
  • 123
  • 15
0
votes
1 answer

Customize ShareActionProvider in two columns

I'm trying to do custom the ShareActionProvider. I have the normal view that you can get with the code of the Android Api, but I want that when I push the button I can view the icons with a background white and the icons in two columns. Check this…
Simpson
  • 593
  • 5
  • 20
0
votes
1 answer

Android ActionBar Sharing with version compatibility

I am trying to share via Android ShareActionProvider. My code is
0
votes
2 answers

MenuItem on ActionBar can't be clicked

I'm trying to implement a share intent to share images. I have a full screen activity which extends ActionBarActivity and a fragment that implements the immersivemode as the android developer's guide explains, so the user can see the image in…
0
votes
1 answer

Share screenshot using ShareActionProvider of my apps current view

I've looked at all relevant similar post and not one answers my question. My program sets up a ShareActionProvider to take a screenshot of the current view and share it with any app that can interact with .png images. Problem: The shared screenshot…