private void destoryFav(String statusId) {
    for (StatusContent status : getAdapter().getDatas()) {
      if (status.getId().equals(statusId)) {
        // 更新ListView
        getAdapter().removeItemAndRefresh(status);

        FavoritesCacheUtility.destory(statusId);
        break;
      }
    }
  }