QuinnChen
QuinnChen

Reputation: 730

How to show progressbar like recyclerView

I am looking for a way to show a progressbar like the one below (which i just saw in recyclerView)

enter image description here

Upvotes: 0

Views: 610

Answers (1)

N J
N J

Reputation: 27505

Please check this it will solve your problem

android.support.v4.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        // put your layout here

    </android.support.v4.widget.SwipeRefreshLayout>

And activity code would be

SwipeRefreshLayout mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe_refresh_layout);
mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
      @Override
      public void onRefresh() {
            refreshContent();
          ...
  }

Upvotes: 1

Related Questions