簡體   English   中英

將 RecyclerView 適配器設置為 ViewPager2

[英]Setting RecyclerView adapter into ViewPager2

我創建了一個帶有水平滾動和 PageSnapHelper 的 RecyclerView。 現在我想用 ViewPager2 替換 RecyclerView。? 我可以簡單地為新的 ViewPager2 設置我之前創建的 RecyclerView Adapter 嗎?

適配器類在這里

class QuoteAdapter(
val context: Context,
val list: ArrayList<ResultsItem>
) : RecyclerView.Adapter<QuoteAdapter.QuoteViewHolder>() {

var i = 0;

override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): 
QuoteViewHolder {

    val view = LayoutInflater.from(context)
        .inflate(R.layout.item_quote, parent, false)
    return QuoteViewHolder(view)
}

override fun getItemCount() = list.size

override fun onBindViewHolder(holder: QuoteViewHolder, position: Int) {



    holder.quote.text = list[position].quoteText
    holder.quote_by.text = "- ${list[position].quoteAuthor}"


    ColorStore()

    if (position == 0) {
        holder.quote_bg.setBackgroundColor(ContextCompat.getColor(context, R.color.md_blue_400))
    } else {
        holder.quote_bg.setBackgroundColor(ContextCompat.getColor(context, colorList.random()))
    }
    holder.quote_bg.setOnClickListener {
        holder.quote_bg.setBackgroundColor(ContextCompat.getColor(context, colorList.random()))
    }



}

class QuoteViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {
    val quote = itemView.quote_text
    val quote_by = itemView.by_text
    val quote_bg = itemView.quote_bg
}

}

我只是將 recyclerview 適配器設置為 viewpager2。 有用。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM