public StatusSubscribeTask(StatusSubscribeActivity context, StatusSubscribeListAdapter adapter) {
   this.context = context;
   this.adapter = adapter;
   this.account = adapter.getAccount();
   this.paging = adapter.getPaging();
   microBlog = GlobalVars.getMicroBlog(account);
 }
  @Override
  protected void onPostExecute(List<com.cattong.entity.Status> result) {
    if (result != null && result.size() > 0) {
      adapter.addCacheToDivider(null, result);
    } else {
      if (resultMsg != null) {
        Toast.makeText(adapter.getContext(), resultMsg, Toast.LENGTH_LONG).show();
      }
    }

    if (paging.hasNext()) {
      context.showMoreFooter();
    } else {
      context.showNoMoreFooter();
    }
  }