朋友您好我正面临Facebook墙上共享功能的问题。我正在共享文本和图像,这是我应用程序的捕获屏幕。但我无法使用以下代码共享文本。请帮我解决这个问题。
Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
shareIntent.setType("image/png");
shareIntent.putExtra(Intent.EXTRA_TITLE, "my awesome caption in the EXTRA_TITLE field");
shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, "your sharing text");
shareIntent.putExtra(android.content.Intent.EXTRA_STREAM, pngUri); // Share
// the
// image
// on
// Facebook
PackageManager pm = mActivity.getPackageManager();
List<ResolveInfo> activityList = pm.queryIntentActivities(shareIntent, 0);
for (final ResolveInfo app : activityList)
{
if ((app.activityInfo.name).contains(sharingapp))
{
c++;
final ActivityInfo activity = app.activityInfo;
final ComponentName name = new ComponentName(activity.applicationInfo.packageName, activity.name);
shareIntent.addCategory(Intent.CATEGORY_LAUNCHER);
shareIntent.setComponent(name);
startActivity(shareIntent);
break;
}
}
答案 0 :(得分:1)
您应该尝试在共享中使用他们的WebDialog,而不是使用Intent在Facebook中分享。使用Intent始终不可靠。 (对不起我的英文:))
以下是我的示例代码:
Bundle params = new Bundle();
params.putString("name", name);
params.putString("caption", caption);
params.putString("description", desctription);
params.putString("picture", image);
WebDialog feedDialog = (new WebDialog.FeedDialogBuilder(context, Session.getActiveSession(), params))
.setOnCompleteListener(new WebDialog.OnCompleteListener() {
@Override
public void onComplete(Bundle values, FacebookException error) {
if (error == null) {
final String postId = values.getString("post_id");
if (postId != null) {
ShareDialog.this.dismiss();
Toast.makeText(context, "Shared Successfully", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(context.getApplicationContext(), "Publish cancelled", Toast.LENGTH_SHORT).show();
}
} else if (error instanceof FacebookOperationCanceledException) {
// User clicked the "x" button
Toast.makeText(context.getApplicationContext(), "Publish cancelled", Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(context.getApplicationContext(), "Error posting story", Toast.LENGTH_SHORT).show();
}
}
})
.build();
feedDialog.show();