我有整数数组,其中有来自可绘制文件夹的图像。现在我想将该整数数组中的图像分享到 facebook 墙上。我尝试了下面的代码
Uri imageuri = Uri.parse("android.resource://" + "package name/" + mBitmapIds[int_image_position]);
String filePath = imageuri.getEncodedPath();
Bundle bundle=new Bundle();
bundle.putString("picture", filePath);
facebookConnector.getFacebook().request("me/feed", bundle, "POST");
其中 mBitmapIds 是 int 数组,但它没有在墙上发布图像。谁能告诉我我该怎么做。提前致谢。