RecyclerViewは、ドロップダウン・リフレッシュ・アップロード、複数のレイアウト・スタイルをサポートします.RV集積フレームワーク使用(一)


まだ古いListviewを使っていますか?まだその複雑なBaseAdapterを受け継いでいますか?まだlistview ADDHead、ADDfootをあげていますか?今日はいいです.SuperRefreshRecyclerViewを使うだけです.すべては1行のコードのことです.
Gildeと多様なレイアウトを追加したこのシリーズの2番目のアドレスは以下の通りです(2つのGithubアドレスが異なります):
http://blog.csdn.net/AndroidMsky/article/details/52944370
[プロジェクトGITHUBリンク]
(https://github.com/AndroidMsky/OOMTestUseAirRecyclerView)STARを歓迎するのに役立つと思うのがブロガーのモチベーション
https://github.com/AndroidMsky/OOMTestUseAirRecyclerView
まず効果gifを1つ上げましょう.
やはり古い慣例の第一歩はまず原理を話して、第二歩は使い方を話します.一.原理
listviewを使用する前にaddhead addfootメソッドがあったことを知っています.これでlistviewに頭と尾を設定できますが、GirdViewでグリッドを表示する場合はこれらの方法はサポートされません.処理してもいいですが、論理的に複雑で導入する必要があるものも多く、RecyclerViewという新世代のコントロールは徐々にlistviewに取っていきます.彼は1行のコードだけでGirdView listViewの切り替えと便利さを与えることができます.
これは1行1つです.
superRecyclerView.init(new LinearLayoutManager(this), this, this);
これは1行3つです.
superRecyclerView.init(new GridLayoutManager(this,3), this, this);
もちろんさっきまでは原生のRecyclerViewの基本的な特性でした.本稿では,使用する継承フレームワークに完璧なリフレッシュを加えることを推奨する.ロードします.マルチスタイルの3つの特性.まず、RecyclerViewはlistviewのように頭と尾を設定することはできません.フレームワークのやり方の原理も簡単です.FrameLayoutで頭と尾を包装し、データがないときです.レイアウトコードは次のとおりです.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <com.example.liangmutian.airrecyclerview.swipetoloadlayout.SwipeToLoadLayout
        android:id="@+id/swipe_to_load"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <com.example.liangmutian.airrecyclerview.swipetoloadlayout.RefreshHeaderView
            android:id="@+id/swipe_refresh_header"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <android.support.v7.widget.RecyclerView
            android:id="@id/swipe_target"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scrollbars="vertical" />

        <com.example.liangmutian.airrecyclerview.swipetoloadlayout.SwipeLoadMoreFooterLayout
            android:id="@+id/swipe_load_more_footer"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

        </com.example.liangmutian.airrecyclerview.swipetoloadlayout.SwipeLoadMoreFooterLayout>
    </com.example.liangmutian.airrecyclerview.swipetoloadlayout.SwipeToLoadLayout>

    <RelativeLayout
        android:id="@+id/layout_empty"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone">

        <TextView
            android:id="@+id/tv_empty"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:textSize="20sp"
            android:text="    " />
    </RelativeLayout>

    <RelativeLayout
        android:id="@+id/layout_error"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone">

        <TextView
            android:id="@+id/tv_error"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:textSize="20sp"
            android:text="    " />
    </RelativeLayout>

</FrameLayout>
自分で定義したいくつかのlayoutバッグに原生のandroid.support.v 7.widget.RecyclerViewが見えますが、機知があって簡単ではありませんか.ヘッダー・テールのスタイルを変更したい場合は、SwipeRefreshHeaderLayoutとSwipeLoadMoreFooterLayoutの関連レイアウトを変更すればよいでしょう.
二.使用法データはAdapterに適しており,多重化しても多重化しない方法がある.ViewHolderも自分で作る必要はありません.
public class Adapter extends BaseRecyclerAdapter<BaseRecyclerAdapter.BaseRecyclerViewHolder, ActType> {

    private List<ActType> list;

    public Adapter(List<ActType> list) {
        super(list);
        this.list = list;
    }

    @Override
    public BaseRecyclerViewHolder createViewHolder(LayoutInflater inflater, ViewGroup parent, int viewType) {
        BaseRecyclerViewHolder holder = null;
        holder = new ProductHolder(inflater.inflate(R.layout.item_choose_act_type, parent, false));
        return holder;
    }

    @Override
    public void onBindViewHolder(BaseRecyclerViewHolder holder, int position, final ActType data) {
        ProductHolder productHolder = (ProductHolder) holder;
        productHolder.tvName.setText(data.name);
    }

    class ProductHolder extends BaseRecyclerViewHolder {
        public TextView tvName;

        public ProductHolder(View itemView) {
            super(itemView);
            tvName = findView(R.id.tv_type_name);

        }
    }
}
ActivityではRecyclerViewを初期化し、2行のコードレベルでリフレッシュとロードが可能かどうかを設定します.implements OnRefreshListener,OnLoadMoreListenerはこの2つのインタフェースを実現すればよい.
superRecyclerView = (SuperRefreshRecyclerView) findViewById(R.id.super_recyclerview);
        superRecyclerView.init(new LinearLayoutManager(this), this, this);
        superRecyclerView.setRefreshEnabled(true);
        superRecyclerView.setLoadingMoreEnable(true);
関連アダプタ
adapter = new Adapter(list);
        superRecyclerView.setAdapter(adapter);
        superRecyclerView.showData();
アナログ更新データ
 @Override
    public void onRefresh() {

        new Handler().postDelayed(new Runnable(){

            public void run() {

                setData();
                superRecyclerView.setRefreshing(false);

            }

        }, 3000);

    }
本稿の第2編では、さまざまなレイアウトスタイルなど、高度な内容について説明します.
作者へようこそ.コメント討論を歓迎します.レンガを撮ってください.この文章があなたに役に立つと思ったらstar私のgithubを歓迎します.筆者への支持でもある.本文Githubコードリンクhttps://github.com/AndroidMsky/OOMTestUseAirRecyclerView
加安卓開発交流群へようこそ:308372687
ブロガーのオリジナルは許可を得ずに転載してはならない.