Пример #1
0
  public void onLoadFinished() {
    if (mLoadSuccess) {
      mGoodsAdapter =
          new GoodsItemAdapter(this, R.id.imageView1, GoodsItemManager.instance().getGoodsItems());
      mSGV.setAdapter(mGoodsAdapter);

    } else {
      Toast.makeText(this, "Network error!", Toast.LENGTH_SHORT).show();
    }

    if (mRefreshItem != null && mRefreshItem.getActionView() != null) {
      mRefreshItem.getActionView().clearAnimation();
      mRefreshItem.setActionView(null);
    }
    mSGV.setVisibility(View.VISIBLE);
    mProgress.setVisibility(View.GONE);
  }
Пример #2
0
  /** Refresh the fragment's list */
  public void refresh() {
    MobclickAgent.onEvent(this, "refresh");

    mGaTracker.sendEvent("ui_action", "button_press", "refresh_button", new Long(12345));
    /* Attach a rotating ImageView to the refresh item as an ActionView */
    LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    ImageView iv = (ImageView) inflater.inflate(R.layout.refresh_action_view, null);

    Animation rotation = AnimationUtils.loadAnimation(this, R.anim.clockwise_refresh);
    rotation.setRepeatCount(Animation.INFINITE);
    iv.startAnimation(rotation);

    mSGV.setVisibility(View.INVISIBLE);
    mProgress.setVisibility(View.VISIBLE);

    mRefreshItem.setActionView(iv);
    refreshGoodsItems();
  }