1

我允许用户在他们的 [Friend & User] Wall 上发布消息以及单个静态图像,并且对于该图像,我使用Web Image URL

但现在我希望允许用户从多个图像中选择任何一个图像,例如存储在SDCard中特定文件夹中的 10 个图像,然后发布到 Wall

所以这是我的问题,如何做到这一点?

我现有的在 Wall 上发布静态图像的代码,请阅读以下内容:

@Override
public void onClick(DialogInterface dialog, int which) {

        Bundle params = new Bundle();
            params.putString("to", String.valueOf(friendId));
        params.putString("caption", getString(R.string.app_name));
        params.putString("description", getString(R.string.app_desc));
        params.putString("link", "http://www.google.com");
            params.putString("picture",FacebookUtility.HACK_ICON_URL);
            params.putString("name",getString(R.string.app_action));

            FacebookUtility.facebook.dialog(FriendsList.this,
           "feed", params, (DialogListener) new PostDialogListener());
      }
  }).setNegativeButton(R.string.no, null).show();
 } catch (JSONException e) {
      showToast("Error: " + e.getMessage());
}

FacebookUtility.java:-

public static final String HACK_ICON_URL = "http://2.bp.blogspot.com/-WuasmTMjMA4/TY0SS4TzIMI/AAAAAAAAFB4/6alyfOzWsqM/s320/flowers-wallpapers-love-blooms-roses-bunch-of-flowers.jpg";

检查我的应用程序的现有屏幕,

在此处输入图像描述

正如您在上面的屏幕中看到的那样,我只显示了上面写的单个静态图像,但现在我想允许用户使用 SD 卡从多个图像中选择一个图像,我的 SDCard 路径如:/sdcard/FbImages/

现在我想知道如何在屏幕上方放置按钮 [因为我没有为此使用任何自定义 xml,这是 FacebookSDK 中的原生功能]

所以这是我的问题如何打开 sdcard 文件夹以及如何从多个图像中选择单个图像发布

4

3 回答 3

1

您必须找到该图像的路径。

尝试以下代码选择图像

btnSelect.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
             Intent intent = new Intent();
             intent.setType("image/*");
             intent.setAction(Intent.ACTION_GET_CONTENT);
             startActivityForResult(Intent.createChooser(intent,"Select Picture"), 0);
        }
    });

获取所选图像的路径

public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if (resultCode == RESULT_OK) {
        if (requestCode == 0) {
            Uri selectedImageUri = data.getData();
            selectedImagePath = getPath(selectedImageUri);
            System.out.println("Image Path : " + selectedImagePath);

        }
    }
}

public String getPath(Uri uri) {
    String[] projection = { MediaStore.Images.Media.DATA };
    Cursor cursor = managedQuery(uri, projection, null, null, null);
    int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
    cursor.moveToFirst();
    return cursor.getString(column_index);
}

然后使用

  params.putString("picture",selectedImagePath);
于 2013-09-06T12:12:47.043 回答
0

从 sdcard 中选择位图时使用它,并给出该代码的路径。

protected void share(String nameApp, String imagePath, String text) {
        // TODO Auto-generated method stub

        try {
            List<Intent> targetedShareIntents = new ArrayList<Intent>();
            Intent share = new Intent(android.content.Intent.ACTION_SEND);
            share.setType("image/jpeg");
            List<ResolveInfo> resInfo = getPackageManager()
                    .queryIntentActivities(share, 0);
            if (!resInfo.isEmpty()) {
                for (ResolveInfo info : resInfo) {
                    Intent targetedShare = new Intent(
                            android.content.Intent.ACTION_SEND);
                    targetedShare.setType("image/jpeg"); // put here your mime
                    // type
                    if (info.activityInfo.packageName.toLowerCase().contains(
                            nameApp)
                            || info.activityInfo.name.toLowerCase().contains(
                                    nameApp)) {
                        targetedShare.putExtra(Intent.EXTRA_SUBJECT, text);
                        targetedShare.putExtra(Intent.EXTRA_TEXT, text);
                        targetedShare.putExtra(Intent.EXTRA_STREAM,
                                Uri.fromFile(new File(imagePath)));
                        targetedShare.setPackage(info.activityInfo.packageName);
                        targetedShareIntents.add(targetedShare);
                    }
                }
                Intent chooserIntent = Intent.createChooser(
                        targetedShareIntents.remove(0), "Select app to share");
                chooserIntent.putExtra(Intent.EXTRA_INITIAL_INTENTS,
                        targetedShareIntents.toArray(new Parcelable[] {}));
                startActivity(chooserIntent);
            }
        } catch (Exception e) {
        }

    }
于 2013-09-09T06:58:57.070 回答
0

感谢您在这里通知我答案。正如你在这里看到的,我正在向我的 Facebook 朋友发送应用请求。然而,它不像在朋友的墙上张贴照片。在那里,您只能发布带有 url ASK 的 App 图标。

如果您想在朋友墙上发布带有消息的照片,请查看我的以下答案。

Bundle param = new Bundle();
param.putString("message", "picture caption");
param.putByteArray("picture", ImageBytes);
mAsyncRunner.request("me/photos", param, "POST", new SampleUploadListener());

在我上面的代码中,ImageBytes 是图像的字节[]。您将不得不从特定文件夹中选择图像,然后将所选图像转换为字节 []。在我上面的代码中使用那个 byte[]。

于 2013-09-09T05:59:51.767 回答