我必须使用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();
但是,仍然不清楚
任何帮助都会有所帮助。
答案 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();