RecyclerView添加Header和Footer

RecyclerView雖然作為ListView的替代者有著較好的性能提升丸卷,但是ListView的一些常用功能卻沒有提供,比如我們平時(shí)會(huì)經(jīng)常用到的addHeaderView捐名,addFooterView旦万,既然RecyclerView沒有提供這個(gè)方法,我們應(yīng)該如何為列表添加頭部和底部呢镶蹋?通過看ListView的源碼可以知道ListView的添加Header和Footer是靠Adapter里面動(dòng)態(tài)添加的成艘,所以我們按照這個(gè)思路也給RecyclerView添加HeaderView和FooterView,先看一下效果

這里寫圖片描述
這里寫圖片描述

RecyclerView實(shí)現(xiàn)添加HeaderView和FooterView的核心就是在Adapter里面的onCreateViewHolder根據(jù)viewType來判斷是列表項(xiàng)還是HeaderView來分別加載不同的布局文件贺归,當(dāng)然viewType的判斷規(guī)則也是由我們定義的淆两,廢話不多說,看一下具體的實(shí)現(xiàn)效果拂酣。
1:Gradle配置 build.gradle

compile 'com.android.support:recyclerview-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'

2:主布局文件 activity_main.xml 很簡單里面一個(gè)RecyclerView

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <android.support.v7.widget.RecyclerView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/rv_list"
    />
</LinearLayout>

3:列表項(xiàng)布局 rv_item.xml 外面一個(gè)CardView的卡片式容器里面一個(gè)TextView

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:id="@+id/cv_item"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="4dp"
>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/tv_item_text"
        android:text="test"
        android:layout_margin="8dp"
        />
</LinearLayout>

</android.support.v7.widget.CardView>

4:列表頭部布局 rv_header.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:id="@+id/cv_item"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="4dp"
card_view:cardBackgroundColor="#4CAF50"
>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="150dp"
    >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Header"
        android:textSize="30sp"
        android:textColor="#ffffff"
        android:gravity="center"
        />
</LinearLayout>
</android.support.v7.widget.CardView>

5:列表底部布局 rv_footer.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:id="@+id/cv_item"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="4dp"
card_view:cardElevation="4dp"
card_view:cardBackgroundColor="#E91E63"
>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="150dp"
    >
    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Footer"
        android:textSize="30sp"
        android:textColor="#ffffff"
        android:gravity="center"
        />

</LinearLayout>
</android.support.v7.widget.CardView>

*6:HeaderBottomAdapter.java秋冰,RecyclerView的Adapter,在getItemViewType方法里面判斷了當(dāng)前Item的類型婶熬,然后在onCreateViewHolder跟據(jù)item的類型分別加載不同的布局以實(shí)現(xiàn)HeaderView和FooterView剑勾,其他方法的含義可以參考注釋
**

public class HeaderBottomAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {

//item類型
public static final int ITEM_TYPE_HEADER = 0;
public static final int ITEM_TYPE_CONTENT = 1;
public static final int ITEM_TYPE_BOTTOM = 2;
//模擬數(shù)據(jù)
public String [] texts={"java","python","C++","Php",".NET","js","Ruby","Swift","OC"};
private LayoutInflater mLayoutInflater;
private Context mContext;
private int mHeaderCount=1;//頭部View個(gè)數(shù)
private int mBottomCount=1;//底部View個(gè)數(shù)

public HeaderBottomAdapter(Context context) {
    mContext = context;
    mLayoutInflater = LayoutInflater.from(context);
}

//內(nèi)容長度
public int getContentItemCount(){
    return texts.length;
}
//判斷當(dāng)前item是否是HeadView
public boolean isHeaderView(int position) {
    return mHeaderCount != 0 && position < mHeaderCount;
}
//判斷當(dāng)前item是否是FooterView
public boolean isBottomView(int position) {
    return mBottomCount != 0 && position >= (mHeaderCount + getContentItemCount());
}


//判斷當(dāng)前item類型
@Override
public int getItemViewType(int position) {
    int dataItemCount = getContentItemCount();
    if (mHeaderCount != 0 && position < mHeaderCount) {
        //頭部View
        return ITEM_TYPE_HEADER;
    } else if (mBottomCount != 0 && position >= (mHeaderCount + dataItemCount)) {
        //底部View
        return ITEM_TYPE_BOTTOM;
    } else {
        //內(nèi)容View
        return ITEM_TYPE_CONTENT;
    }
}

//內(nèi)容 ViewHolder
public static class ContentViewHolder extends RecyclerView.ViewHolder {
    private TextView textView;
    public ContentViewHolder(View itemView) {
        super(itemView);
        textView=(TextView)itemView.findViewById(R.id.tv_item_text);
    }
}
//頭部 ViewHolder
public static class HeaderViewHolder extends RecyclerView.ViewHolder {

    public HeaderViewHolder(View itemView) {
        super(itemView);
    }
}
//底部 ViewHolder
public static class BottomViewHolder extends RecyclerView.ViewHolder {

    public BottomViewHolder(View itemView) {
        super(itemView);
    }
}

@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    if (viewType ==ITEM_TYPE_HEADER) {
        return new HeaderViewHolder(mLayoutInflater.inflate(R.layout.rv_header, parent, false));
    } else if (viewType == ITEM_TYPE_CONTENT) {
        return  new ContentViewHolder(mLayoutInflater.inflate(R.layout.rv_item, parent, false));
    } else if (viewType == ITEM_TYPE_BOTTOM) {
        return new BottomViewHolder(mLayoutInflater.inflate(R.layout.rv_footer, parent, false));
    }
    return null;
}

@Override
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
    if (holder instanceof HeaderViewHolder) {

    } else if (holder instanceof ContentViewHolder) {
        ((ContentViewHolder) holder).textView.setText(texts[position - mHeaderCount]);

    } else if (holder instanceof BottomViewHolder) {

    }
}

@Override
public int getItemCount() {
   return mHeaderCount + getContentItemCount() + mBottomCount;
}

}

7:最后一步埃撵,MainActivity.java

public class MainActivity extends AppCompatActivity {
private RecyclerView mRecyclerView;
private HeaderBottomAdapter adapter;
GridLayoutManager gridLayoutManager;
LinearLayoutManager layoutManager;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    mRecyclerView=(RecyclerView)findViewById(R.id.rv_list);
    //List布局
    layoutManager=new LinearLayoutManager(this);
    layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
    mRecyclerView.setLayoutManager(layoutManager);
    mRecyclerView.setAdapter(adapter=new HeaderBottomAdapter(this));

    //Grid布局 
//        gridLayoutManager=new GridLayoutManager(MainActivity.this, 2);
//        mRecyclerView.setLayoutManager(gridLayoutManager);//這里用線性宮格顯示 類似于grid view
//        mRecyclerView.setAdapter(adapter=new HeaderBottomAdapter(this));
//
//
//            gridLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
//                @Override
//                public int getSpanSize(int position) {
//                    return (adapter.isHeaderView(position) || adapter.isBottomView(position)) ? gridLayoutManager.getSpanCount() : 1;
//                }
//            });


    }

}

這里注意一點(diǎn),如果你的RecyclerView使用Grid類型列表在設(shè)置Adapter后需要調(diào)用這個(gè)方法虽另,根據(jù)當(dāng)前Item類型來判斷占據(jù)的橫向格數(shù)暂刘,這也是Adapter里面實(shí)現(xiàn)isHeaderView和isBottomView的緣故

 gridLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
            @Override
            public int getSpanSize(int position) {
                return (adapter.isHeaderView(position) || adapter.isBottomView(position)) ? gridLayoutManager.getSpanCount() : 1;
            }
       });
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市洲赵,隨后出現(xiàn)的幾起案子鸳惯,更是在濱河造成了極大的恐慌,老刑警劉巖叠萍,帶你破解...
    沈念sama閱讀 216,919評(píng)論 6 502
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芝发,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡苛谷,警方通過查閱死者的電腦和手機(jī)辅鲸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 92,567評(píng)論 3 392
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來腹殿,“玉大人独悴,你說我怎么就攤上這事÷辔荆” “怎么了刻炒?”我有些...
    開封第一講書人閱讀 163,316評(píng)論 0 353
  • 文/不壞的土叔 我叫張陵,是天一觀的道長自沧。 經(jīng)常有香客問我坟奥,道長,這世上最難降的妖魔是什么拇厢? 我笑而不...
    開封第一講書人閱讀 58,294評(píng)論 1 292
  • 正文 為了忘掉前任爱谁,我火速辦了婚禮,結(jié)果婚禮上孝偎,老公的妹妹穿的比我還像新娘访敌。我一直安慰自己,他們只是感情好衣盾,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,318評(píng)論 6 390
  • 文/花漫 我一把揭開白布寺旺。 她就那樣靜靜地躺著,像睡著了一般势决。 火紅的嫁衣襯著肌膚如雪迅涮。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 51,245評(píng)論 1 299
  • 那天徽龟,我揣著相機(jī)與錄音,去河邊找鬼唉地。 笑死据悔,一個(gè)胖子當(dāng)著我的面吹牛传透,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播极颓,決...
    沈念sama閱讀 40,120評(píng)論 3 418
  • 文/蒼蘭香墨 我猛地睜開眼朱盐,長吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了菠隆?” 一聲冷哼從身側(cè)響起兵琳,我...
    開封第一講書人閱讀 38,964評(píng)論 0 275
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎骇径,沒想到半個(gè)月后躯肌,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 45,376評(píng)論 1 313
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡破衔,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,592評(píng)論 2 333
  • 正文 我和宋清朗相戀三年清女,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片晰筛。...
    茶點(diǎn)故事閱讀 39,764評(píng)論 1 348
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡嫡丙,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出读第,到底是詐尸還是另有隱情曙博,我是刑警寧澤,帶...
    沈念sama閱讀 35,460評(píng)論 5 344
  • 正文 年R本政府宣布怜瞒,位于F島的核電站父泳,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏盼砍。R本人自食惡果不足惜尘吗,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,070評(píng)論 3 327
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望浇坐。 院中可真熱鬧睬捶,春花似錦、人聲如沸近刘。這莊子的主人今日做“春日...
    開封第一講書人閱讀 31,697評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽觉渴。三九已至介劫,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間案淋,已是汗流浹背座韵。 一陣腳步聲響...
    開封第一講書人閱讀 32,846評(píng)論 1 269
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人誉碴。 一個(gè)月前我還...
    沈念sama閱讀 47,819評(píng)論 2 370
  • 正文 我出身青樓宦棺,卻偏偏與公主長得像,于是被迫代替她去往敵國和親黔帕。 傳聞我的和親對(duì)象是個(gè)殘疾皇子代咸,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 44,665評(píng)論 2 354

推薦閱讀更多精彩內(nèi)容