【问题标题】:Add photos using bazaarvoice sdk使用 bazaarvoice sdk 添加照片
【发布时间】:2017-09-18 09:41:18
【问题描述】:

我必须使用 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();

但是,还是不清楚

任何帮助都会有所帮助。

【问题讨论】:

    标签: android review


    【解决方案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();
    

    【讨论】:

      猜你喜欢
      • 2020-03-19
      • 1970-01-01
      • 2019-10-24
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-09-10
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多