使用bazaarvoice sdk添加照片

时间:2017-09-18 09:41:18

标签: android review

我必须使用bazaarvoice sdk提交多张照片,而不是如何做到这一点,我找到了类似的东西

ReviewSubmissionRequest submission = new ReviewSubmissionRequest.Builder(submitAction, productId)  
        .userNickname("xxxx")
        .title("Review title")
        .reviewText("This is the review text the user adds about how great the product is!")
        .addPhoto(localImageFile, "caption")
        .build();

但是,仍然不清楚

任何帮助都会有所帮助。

1 个答案:

答案 0 :(得分:1)

您应该可以多次调用addPhoto来添加许多照片。

final ReviewSubmissionRequest submission = new ReviewSubmissionRequest.Builder(submitAction, productId)  
  .userNickname("xxxx")
  .title("Review title")
  .reviewText("This is the review text the user adds about how great the product is!")
  .addPhoto(localImageFile1, "caption 1")
  .addPhoto(localImageFile2, "caption 2")
  .addPhoto(localImageFile3, "caption 3")
  .build();