コード例 #1
0
  /* (non-Javadoc)
   * @see com.socialize.demo.DemoActivity#executeDemo()
   */
  @Override
  public void executeDemo(String text) {

    CommentUtils.getCommentsByEntity(
        this,
        entity.getKey(),
        0,
        50,
        new CommentListListener() {

          @Override
          public void onList(ListResult<Comment> comments) {
            handleSocializeResult(comments);
          }

          @Override
          public void onError(SocializeException error) {
            handleError(GetCommentsByEntityActivity.this, error);
          }
        });
  }