Swipe Refresh Layout
شنبه, ۶ دی ۱۳۹۹، ۰۲:۳۳ ق.ظ
همون لیوتی که با اسکرول کردن به سمت پایین آیکون پراگرس بار رو نشون میده (مشابه اینستاگرام)
نحوه استفاده:
swipeRefreshLayout.setOnRefreshListener(new OnRefreshListener()
{
@Override
public void onRefresh()
{
// do nothing
}
});
توی onRefresh کدهامونو مینویسیم و آخرش باید حتما کد
swipeRefreshLayout.setRefreshing(false);
اضافه بشه تا پراگرس بار حذف گردد.
مثلا توی onSuccess گرفتن دیتا از سرور باید این خط نوشته بشه.
هر جای دیگه توی برنامه که بخواهیم پراگرس بار را نمایش دهیم از کد بالا استفاده میکنیم (نمایش دادن true حذف کردن false) اینجا
توضیحات سایت متریال درباره این ویو
کد XML:
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/searchEditText">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/newsListRecycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/progressbar_bg"
android:scrollbars="vertical"
tools:listitem="@layout/recycler_item" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
تغییر رنگ پراگرس بار:
swipeRefreshLayout.setColorSchemeResource();
رنگا رو توی پرانتز مینویسیم (تست نشده)
۹۹/۱۰/۰۶