Android. widget. shareactionprovider does not work on the emulator

Source: Internet
Author: User
From: http://code.google.com/p/android/issues/detail? Id = 25467 reported by Lars.Vo...@gmail.com, Feb 13,201 2
If I add a ShareActionProvider to my application it works file on a real device but not on the emulator. If I press the Share button in the emulator nothing happens.Here is my menu:<?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android" >   <item android:id="@+id/menu_share"          android:title="Share"          android:showAsAction="ifRoom"          android:actionProviderClass="android.widget.ShareActionProvider" />    <item        android:id="@+id/item1"        android:showAsAction="ifRoom"        android:title="Hello">    </item>    <item        android:id="@+id/item2"        android:showAsAction="ifRoom"        android:title="This will not fit in the Action bar">    </item></menu>I add this menu to my Activity:@Overridepublic boolean onCreateOptionsMenu(Menu menu) {getMenuInflater().inflate(R.menu.mymenu, menu);provider = (ShareActionProvider) menu.findItem(R.id.menu_share).getActionProvider();doShare();return true;}public void doShare() {Intent intent = new Intent(Intent.ACTION_SEND);intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT, "Message");provider.setShareIntent(intent);}
Comment 1 by project member x...@android.com, Feb 23,201 2

(No comment was entered for this change.)
Status: 
Owner:Ad...@android.com
Labels:-Component-Tools Component-framework comment 2 by jakewhar...@gmail.com, Mar 29,201 2

This is due to their only being a single (or zero) applications which support that intent. If this is the case the provider will not allow any interaction. It would be nice if there was a Toast or the dropdown still showed with a message of some sort.
Comment 3 by buz...@gmail.com, Mar 30,201 2

I agree with Jake : this is because the emulator do not have many apps that can answer the intent.
Comment 4 by Lars.Vo...@gmail.com, Mar 30,201 2

SMS app is available and this accepts Intent.ACTION_SEND. If I trigger this directly it also works. Hence I suspect still a bug.
Comment 5 by project member ad...@android.com, Mar 30,201 2

(No comment was entered for this change.)
Owner:Svetosla...@android.com comment 6 by dfuern...@gmail.com, Jun 7, 2012

If you add another app (see attachment for example) to your emulator supporting ShareIntents of type text/plain and accepting Intent.ACTION_SEND, the ShareProvider will work. It then also displays the already mentioned Messaging App. This however should be considered a workaround. 
Pva-sharetarget.zip 
147 KB download
Comment 7 by digi...@gmail.com, Aug 1, 2012

I can reproduce this bug too, and the weird thing is it works if you've opened the list at least once, with at least two intents. For example:Two activities: Open list.Change intent to one that resolves to one activity.Open list: Still works.It doesn't work if you haven't yet opened it.
Comment 8 by digi...@gmail.com, Aug 1, 2012

Seems related to these lines in ActivityChooserView$ActivityChooserViewAdapter:if (!mShowDefaultActivity && mDataModel.getDefaultActivity() != null) {activityCount--;}IF you haven't opened the list yet, activityCount gets subtracted by 1, getCount() returns 0 and the button gets disabled. The list still contains one activity.The title should be changed, because this doesn't really have anything to do with the emulator and affects real production devices. Even if there's only 1 activity, it should still be shown instead of disabling the button.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.