قدم اول: اضافه کردن support library v4
کد زیر رو به gradle اضافه می کنیم
dependencies {
…
compile ‘com.android.support:support-v4:23.1.0’
…
}
قدم دوم: اضافه کردن SwipeRefreshLayout به Layout
android:id=”@+id/swipe_refresh”
android:layout_width=”match_parent”
android:layout_height=”wrap_content”>
android:id=”@+id/recycler_view”
android:layout_width=”match_parent”
android:layout_height=”match_parent” />
قدم سوم: نمایش SwipeRefresh در هنگام لود
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
swipeRefresh.setRefreshing(true);
}
}, ۱۰۰);
قدم چهارم: پیاده سازیه OnRefreshListener
swipeRefresh.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
//دریافت داده ها از سرور
}
});
قدم آخر: تغییر رنگ SwipeRefreshLayout
swipeRefresh.setColorSchemeResources(R.color.accent);
Informative blog! Today I found No Code University, A revolutionized the tech education landscape with its comprehensive range of No Code courses . These courses cater to aspiring creators, entrepreneurs, and professionals looking to build powerful software solutions without traditional coding expertise.
ReplyDelete