0
RealmRecyclerView 맨 아래에 스 와이프 상단에 더 많은 데이터를로드하고 싶습니다. 어떻게 RealmRecyclerView 기본로드를 맨 위에 설정해야합니까?하단 대신 RealmRecyclerView 위에 하중을 더 설정하는 방법은 무엇입니까?
RealmRecyclerView 맨 아래에 스 와이프 상단에 더 많은 데이터를로드하고 싶습니다. 어떻게 RealmRecyclerView 기본로드를 맨 위에 설정해야합니까?하단 대신 RealmRecyclerView 위에 하중을 더 설정하는 방법은 무엇입니까?
RecyclerView에서 스 와이프하여 더 많은 데이터를로드하려는 경우 SwipeRefreshLayout이 좋은 옵션입니다. 구현하기가 쉽고 로더로 스 와이프 할 때 콜백을 효율적으로 처리 할 수 있습니다. 참고로 다음 코드를 참조하십시오 :
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never" />
</android.support.v4.widget.SwipeRefreshLayout>
콜백 방법 :이 당신을 도울 것입니다
swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
// Refresh items
}
});
희망을.