Reputation: 730
I am looking for a way to show a progressbar like the one below (which i just saw in recyclerView)
Upvotes: 0
Views: 610
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