在Android中使用RecyclerView - Part1

概述

RecyclerView可以高效地顯示大量數(shù)據(jù)调鬓,并且可以自定義每個(gè)列表項(xiàng)的外觀米碰。接下來,我們會(huì)使用RecyclerView來創(chuàng)建一個(gè)列表姻蚓,用作展示一個(gè)商品的序列號(hào)、名稱和價(jià)格匣沼。運(yùn)行效果如下圖:

運(yùn)行效果

實(shí)現(xiàn)步驟

定義Product類

列表中需要展示商品的名稱狰挡、價(jià)格。首先,我們需要定義一個(gè)Product類加叁,用作UI的數(shù)據(jù)呈現(xiàn)倦沧。
新創(chuàng)建一個(gè)名為data的packge(如果新增了和數(shù)據(jù)相關(guān)的類,都放到這個(gè)packge下面)它匕,再創(chuàng)建一個(gè)Product類展融。

創(chuàng)建Product類

布局文件修改

加入RecyclerView控件

在activity_main.xml中加入RecyclerView控件,將id設(shè)置為recyclerView豫柬,代碼如下:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
activity_main.xml中加入RecyclerView控件

為列表中每個(gè)元素的外觀

1告希、創(chuàng)建一個(gè)名為cell.xml的布局文件

創(chuàng)建cell.xml

2、在cell布局文件中烧给,加入3個(gè)TextView控件暂雹,分別用作展示序號(hào)、產(chǎn)品名稱创夜、產(chǎn)品價(jià)格杭跪,對(duì)應(yīng)id為:indexname驰吓、price

cell布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/index"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1"
        android:textSize="24sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/guideline2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:text="產(chǎn)品名稱"
        android:textSize="24sp"
        app:layout_constraintBottom_toTopOf="@+id/price"
        app:layout_constraintStart_toStartOf="@+id/guideline2"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/price"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginBottom="8dp"
        android:text="價(jià)格"
        android:textSize="18sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="@+id/name"
        app:layout_constraintTop_toBottomOf="@+id/name" />

    <androidx.constraintlayout.widget.Guideline
        android:id="@+id/guideline2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        app:layout_constraintGuide_percent="0.15085158" />
</androidx.constraintlayout.widget.ConstraintLayout>

打開ViewBinding

打開ViewBinding

ViewBinding的使用可以參考:在Android中使用ViewBinding

Java代碼實(shí)現(xiàn)

自定義Adapter和ViewHolder類

ViewHolder是列表項(xiàng)布局(即cell.xml)的 View容器涧尿。Adapter會(huì)根據(jù)需要?jiǎng)?chuàng)建ViewHolder 對(duì)象,還會(huì)為這些視圖設(shè)置數(shù)據(jù)檬贰。將視圖與其數(shù)據(jù)相關(guān)聯(lián)的過程稱為“綁定”姑廉。

新創(chuàng)建一個(gè)名為ui的packge(如果新增了和UI相關(guān)的類,都放到這個(gè)packge下面)翁涤,再創(chuàng)建一個(gè)MyAdapter類和內(nèi)部MyViewHolder類桥言。


自定義MyAdapter和MyViewHolder類
package com.example.recyclerviewdemo.ui;

import android.view.View;
import android.view.ViewGroup;

import androidx.annotation.NonNull;
import androidx.recyclerview.widget.RecyclerView;

public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {

    @NonNull
    @Override
    public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        return null;
    }

    @Override
    public void onBindViewHolder(@NonNull MyViewHolder holder, int position) {

    }

    @Override
    public int getItemCount() {
        return 0;
    }

    static class MyViewHolder extends RecyclerView.ViewHolder {

        public MyViewHolder(@NonNull View itemView) {
            super(itemView);
        }
    }
}

修改MyViewHolder類

將MyViewHolder和cell布局文件關(guān)聯(lián)起來

static class MyViewHolder extends RecyclerView.ViewHolder {
    private CellBinding binding;
    
    public MyViewHolder(@NonNull CellBinding itemView) {
        super(itemView.getRoot());
        binding = itemView;
    }
}

修改MyAdapter

1、 修改onCreateViewHolder
每當(dāng)RecyclerView需要?jiǎng)?chuàng)建新的ViewHolder 時(shí)葵礼,它都會(huì)調(diào)用onCreateViewHolder号阿。此方法會(huì)創(chuàng)建并初始化ViewHolder及其關(guān)聯(lián)的View,但不會(huì)填充視圖的內(nèi)容鸳粉,因?yàn)?code>ViewHolder此時(shí)尚未綁定到具體數(shù)據(jù)扔涧。

在onCreateViewHolder將的cell布局文件的視圖加載起來

public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {
    private CellBinding binding;

    @NonNull
    @Override
    public MyViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
        binding = CellBinding.inflate(LayoutInflater.from(parent.getContext()));
        return new MyViewHolder(binding);
    }
    ... ...
}

2、修改onBindViewHolder
RecyclerView調(diào)用此方法將ViewHolder與數(shù)據(jù)相關(guān)聯(lián)届谈。onBindViewHolder會(huì)提取適當(dāng)?shù)臄?shù)據(jù)枯夜,并使用該數(shù)據(jù)填充ViewHolder的布局。

onBindViewHolder中給cell布局文件中的3個(gè)控件賦值艰山。為了方便演示湖雹,直接在這個(gè)方法中創(chuàng)建了一個(gè)Product對(duì)象,實(shí)際項(xiàng)目中不能這樣編寫代碼曙搬,在后續(xù)文章中會(huì)介紹如何使用ViewModel管理Product的數(shù)據(jù)摔吏。

@Override
public void onBindViewHolder(@NonNull MyViewHolder holder, int position) {
    // TODO: Add for test
    Product product = new Product();
    product.setName("哇哈哈AD鈣奶");
    product.setPrice(2);
    binding.name.setText(product.getName());
    binding.price.setText(product.getPrice() + "¥");
    binding.index.setText(String.valueOf(position + 1));
}

3汤踏、修改getItemCount
RecyclerView調(diào)用getItemCount來獲取數(shù)據(jù)集的大小
為了方便演示,直接返回item的個(gè)數(shù)為1

@Override
public int getItemCount() {
    // TODO: Add for test
    return 1;
}

設(shè)置LayoutManagerAdpater

最后舔腾,在MainActivity中設(shè)置RecyclerViewLayoutManagerAdapter溪胶,就完成了所有代碼的編寫

public class MainActivity extends AppCompatActivity {
    private ActivityMainBinding binding;
    private MyAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        binding = ActivityMainBinding.inflate(getLayoutInflater());
        setContentView(binding.getRoot());

        binding.recyclerView.setLayoutManager(new LinearLayoutManager(this));
        adapter = new MyAdapter();
        binding.recyclerView.setAdapter(adapter);
    }
}

運(yùn)行

運(yùn)行效果如下:


運(yùn)行效果

我們可以嘗試把count改成10

@Override
public int getItemCount() {
    // TODO: Add for test
    return 10;
}

運(yùn)行效果如下:

運(yùn)行效果

參考

使用 RecyclerView 創(chuàng)建動(dòng)態(tài)列表

完整代碼

https://github.com/zhanghuamao/RecyclerViewDemo

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市稳诚,隨后出現(xiàn)的幾起案子哗脖,更是在濱河造成了極大的恐慌,老刑警劉巖扳还,帶你破解...
    沈念sama閱讀 206,126評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件才避,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡氨距,警方通過查閱死者的電腦和手機(jī)桑逝,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,254評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來俏让,“玉大人楞遏,你說我怎么就攤上這事∈孜簦” “怎么了寡喝?”我有些...
    開封第一講書人閱讀 152,445評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)勒奇。 經(jīng)常有香客問我预鬓,道長(zhǎng),這世上最難降的妖魔是什么赊颠? 我笑而不...
    開封第一講書人閱讀 55,185評(píng)論 1 278
  • 正文 為了忘掉前任格二,我火速辦了婚禮,結(jié)果婚禮上竣蹦,老公的妹妹穿的比我還像新娘顶猜。我一直安慰自己,他們只是感情好草添,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,178評(píng)論 5 371
  • 文/花漫 我一把揭開白布驶兜。 她就那樣靜靜地躺著扼仲,像睡著了一般远寸。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上屠凶,一...
    開封第一講書人閱讀 48,970評(píng)論 1 284
  • 那天驰后,我揣著相機(jī)與錄音,去河邊找鬼矗愧。 笑死灶芝,一個(gè)胖子當(dāng)著我的面吹牛郑原,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播夜涕,決...
    沈念sama閱讀 38,276評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼犯犁,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了女器?” 一聲冷哼從身側(cè)響起酸役,我...
    開封第一講書人閱讀 36,927評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎驾胆,沒想到半個(gè)月后涣澡,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,400評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡丧诺,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,883評(píng)論 2 323
  • 正文 我和宋清朗相戀三年入桂,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驳阎。...
    茶點(diǎn)故事閱讀 37,997評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡抗愁,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出呵晚,到底是詐尸還是另有隱情驹愚,我是刑警寧澤,帶...
    沈念sama閱讀 33,646評(píng)論 4 322
  • 正文 年R本政府宣布劣纲,位于F島的核電站逢捺,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏癞季。R本人自食惡果不足惜劫瞳,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,213評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望绷柒。 院中可真熱鬧志于,春花似錦、人聲如沸废睦。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,204評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽嗜湃。三九已至奈应,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間购披,已是汗流浹背杖挣。 一陣腳步聲響...
    開封第一講書人閱讀 31,423評(píng)論 1 260
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留刚陡,地道東北人惩妇。 一個(gè)月前我還...
    沈念sama閱讀 45,423評(píng)論 2 352
  • 正文 我出身青樓株汉,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親歌殃。 傳聞我的和親對(duì)象是個(gè)殘疾皇子乔妈,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,722評(píng)論 2 345