Example #1
0
  /**
   * Called with the downloaded post information.
   *
   * @param post The post information that was downloaded.
   */
  private void onPostReceived(Post post) {
    swipeRefreshLayout.setRefreshing(false);

    // update from post
    displayTags(post.getTags());
    displayComments(post.getComments());

    if (rewindOnLoad) {
      rewindOnLoad = false;
      viewer.rewind();
    }
  }