我试图使用带有Thread.yield
作为参数的Adapter来创建自定义RecyclerView
,我成功了,但是现在HashMap
列表中只显示了一项,我不知道为什么
这是我的代码段:
自定义RecyclerAdapter:
recyclerView
初始化:
class ProductsRecyclerAdapter(private val dataSet: HashMap<Int, ProductEntry>) : RecyclerView.Adapter<ProductsRecyclerAdapter.ViewHolder>() {
class ViewHolder(val linearLay: LinearLayout) : RecyclerView.ViewHolder(linearLay)
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int) : ProductsRecyclerAdapter.ViewHolder {
val linearLay = LayoutInflater.from(parent.context).inflate(R.layout.test_text_view, parent, false) as LinearLayout
return ViewHolder(linearLay)
}
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
holder.linearLay.textView.text = dataSet[position]?.pName
holder.linearLay.textView2.text = dataSet[position]?.pExpiry
}
override fun getItemCount(): Int {
return dataSet.size
}
}
最后,为行定制XML:
// Setup RecyclerView
val prod1 = ProductEntry("Milk", "04/06/1996")
val prod2 = ProductEntry("Bread", "04/01/2012")
val testArray : HashMap<Int, ProductEntry> = hashMapOf(1 to prod1, 2 to prod2)
viewManager = LinearLayoutManager(this)
viewAdapter = ProductsRecyclerAdapter(testArray)
recyclerView = findViewById<RecyclerView>(R.id.productsRecyclerView).apply {
setHasFixedSize(true)
layoutManager = viewManager
adapter = viewAdapter
}
尽管一切似乎都很好,但我只得到1行显示“ 牛奶”。
感谢所有帮助!
答案 0 :(得分:1)
position
中的 override fun onBindViewHolder(holder: ViewHolder, position: Int)
从索引0开始。
因此,在您的情况下,它将为[0,1],而地图键为[1,2]。只有键“ 1”将正确显示。
尝试:
val testArray : HashMap<Int, ProductEntry> = hashMapOf(0 to prod1, 1 to prod2)
但无需在这里使用地图!只需使用简单的ProductEntry
列表即可。