短視訊平臺開發,下拉重新整理、到底自動重新整理新內容

zhibo系統開發發表於2022-01-17

短視訊平臺開發,下拉重新整理、到底自動重新整理新內容實現的相關程式碼

第一步:

新增依賴

implementation  'com.scwang.smart:refresh-layout-kernel:2.0.3'
implementation  'com.scwang.smart:refresh-header-classics:2.0.3'
implementation  'com.scwang.smart:refresh-footer-classics:2.0.3'

第二步:

新增布局檔案

<RelativeLayout xmlns:android="
    xmlns:tools="
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ui.life.LifeFragment"
    android:background="#F1F1f1"
    >
    <com.scwang.smart.refresh.layout.SmartRefreshLayout
        xmlns:android="
        android:id="@+id/refreshLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    <com.scwang.smart.refresh.header.ClassicsHeader
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    <androidx.recyclerview.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/life_recycler"
        />
        <com.scwang.smart.refresh.footer.ClassicsFooter
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </com.scwang.smart.refresh.layout.SmartRefreshLayout>
</RelativeLayout>

第三步:

初始化程式碼

mRefresh.setRefreshHeader(new ClassicsHeader(getContext()));
mRefresh.setRefreshFooter(new ClassicsFooter(getContext()));
mRefresh.setOnRefreshListener(new OnRefreshListener() {
    @Override
    public void onRefresh(RefreshLayout refreshlayout) {
        refreshlayout.finishRefresh(2000/*,false*/);//傳入false表示重新整理失敗
    }
});
mRefresh.setOnLoadMoreListener(new OnLoadMoreListener() {
    @Override
    public void onLoadMore(RefreshLayout refreshlayout) {
        refreshlayout.finishLoadMore(2000/*,false*/);//傳入false表示載入失敗
    }
});

以上就是短視訊平臺開發,下拉重新整理、到底自動重新整理新內容實現的相關程式碼, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2852601/,如需轉載,請註明出處,否則將追究法律責任。

相關文章