In the previous version of the Facebook app for Android, it was possible to know whether a person use facebook to share content in another application. How ? With the activity result. If the person share content, Activity.RESULT_OK was returned. Now, in all cases, Activity.RESULT_CANCEL is always returned
Why this change ?
Example:
@Override
public boolean onCreateOptionsMenu(Menu menu)
{
MenuInflater inflater = this.getSupportMenuInflater();
inflater.inflate(R.menu.common_menu, menu);
/** Getting the actionprovider associated with the menu item whose id is share */
this.mShareActionProvider = (ShareActionProvider) menu.findItem(R.id.MenuItem_Share).getActionProvider();
/** Getting the target intent */
Intent intent = this.getDefaultShareIntent();
/** Setting a share intent */
if (intent != null)
this.mShareActionProvider.setShareIntent(intent);
this.mShareActionProvider.setOnShareTargetSelectedListener(new OnShareTargetSelectedListener()
{
@Override
public boolean onShareTargetSelected(ShareActionProvider source, Intent intent)
{
ActivityBase.this.startActivityForResult(intent, Constant.DIALOG_REQUEST_SHARE);
return true;
}
});
return true;
}
@Override
protected void onActivityResult(int request, int result, Intent intent)
{
if (Constant.DIALOG_REQUEST_SHARE == request && result == Activity.RESULT_OK)
{
//my stuff
}
}
ACTION_SENDis not documented to return anything, and so any result other thanRESULT_CANCELEDis arguably a bug. Certainly, no developer should be relying uponACTION_SENDdeliveringRESULT_OK. – CommonsWare Jan 6 at 14:24