0

我尝试使用 ShareActionProvider ( support.v7) 为我的应用程序执行共享。所有应用程序,例如 Gmail、Evernote 等。al,工作正常 - 除了 Facebook。我不知道问题是什么。这是我的代码片段:

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.share, menu);
    MenuItem shareItem = menu.findItem(R.id.action_share);
     mShareActionProvider = (ShareActionProvider) MenuItemCompat.getActionProvider(shareItem);
    mShareActionProvider.setShareIntent(shareIntent());

    return true;
}

public Intent shareIntent () {
    Intent shareIntent = new Intent(Intent.ACTION_SEND);
    shareIntent.setType("type/plain");
    shareIntent.setType("image/*");
    shareIntent.putExtra(Intent.EXTRA_SUBJECT,"SUBJECT");
    shareIntent.putExtra(Intent.EXTRA_TEXT,"TEXT TEXT");
    return shareIntent;
}
4

1 回答 1

4

首先,不要调用setType()两次,因为第二个会取代第一个。

其次,type/plain不是有效的 MIME 类型。试试text/plain

第三,如果你要使用image/*,你需要使用EXTRA_STREAM来提供图像。

于 2013-09-21T14:31:48.307 回答