android - Swipe down to refresh Material Design -
android - Swipe down to refresh Material Design -
i've been looking around implementation of new material design swipe downwards refresh on recyclerviews loading circle coming downwards actionbar, new gmail app. haven't found similar yet, swiperefreshlayout+recyclerview examples. know how this?
you can utilize swipetorefresh view provided in appcombat back upwards library:
compile 'com.android.support:appcompat-v7:21.0.0'
here's how can utilize in combination recyclerview
<android.support.v4.widget.swiperefreshlayout android:id="@+id/swipe_refresh_layout" android:layout_width="match_parent" android:layout_height="match_parent"> <android.support.v7.widget.recyclerview android:id="@+id/list" android:layout_width="match_parent" android:cliptopadding="false" android:layout_height="match_parent" android:paddingright="@dimen/activity_horizontal_margin" android:paddingleft="@dimen/activity_horizontal_margin" android:paddingtop="@dimen/activity_horizontal_margin" android:paddingbottom="@dimen/activity_vertical_margin" /> </android.support.v4.widget.swiperefreshlayout>
hope help!
android android-5.0-lollipop material-design pull-to-refresh recyclerview
Comments
Post a Comment