recyclerview smoothscroll 不适用于对话框

问题描述 投票:0回答:1

我的申请流程:

stocker片段:

  • 使用条码扫描仪输入条码

  • 如果之前已经扫描过条形码,请平滑滚动到现有条形码并显示对话框模式以编辑数量。

  • 当用户在对话框模式中编辑数量后按 Enter 键时,关闭对话框并平滑滚动到最后位置。 <-- the error happen in this step. it just dismiss the dialog and not auto scrolling to the last position.

这是 Qty edittext 上的代码:

class ModalQtyOnKeyListener(
    private val dialog: Dialog,
    private val QtyTextToEdit: EditText,
    private val QtyModal: EditText,
    private var oldQty: Any,
    private val currentBarcodeText: EditText,
    val recyclerView: RecyclerView,
    private val mContacts:  MutableList<BarcodeList>) : View.OnKeyListener {

init{
    oldQty = try {
        oldQty.toString().toInt()
    } catch (e: NumberFormatException) {
        1
    }
}

override fun onKey(v: View, keyCode: Int, event: KeyEvent): Boolean {

    if (event.action == KeyEvent.ACTION_UP) {

        return if (keyCode == 66) {

            var newQty = 0
            var barcode = ""


            if(QtyModal.text.length >= 12)
            {
                val pattern = Pattern.compile("([0-9]+)?([a-zA-Z]{3}[0-9]+)")
                val matcher = pattern.matcher(QtyModal.text.toString())

                if (matcher.find()) {
                    val qty = if (matcher.group(1)!= null)  matcher.group(1) else QtyModal.text.toString()
                    barcode = if (matcher.group(2)!= null) matcher.group(2) else ""
                    newQty = QtyTextToEdit.text.toString().toInt() + qty.toString().toInt()
                }
            } else
            {
                newQty = QtyModal.text.toString().toInt() + QtyTextToEdit.text.toString().toInt()
                barcode = QtyModal.text.toString()
            }

            QtyTextToEdit.setText(newQty.toString())

// from this line where the code is not working
            recyclerView.postDelayed({
                // Call smooth scroll
                
 // FYI: I already debug mContacts.size return correct position
 recyclerView.layoutManager.scrollToPosition(mContacts.size)
            }, 100)

 // FYI: current barcode and recyclerview not in modal dialog but in the fragment.
            currentBarcodeText.postDelayed({

                    currentBarcodeText.requestFocus()
                    currentBarcodeText.setText("")

                    if(barcode.length==12)
                    {
                        currentBarcodeText.setText(barcode)
                        currentBarcodeText.setSelection(barcode.length)

                        currentBarcodeText.dispatchKeyEvent(KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_ENTER))
                        currentBarcodeText.dispatchKeyEvent(KeyEvent(KeyEvent.ACTION_UP, KeyEvent.KEYCODE_ENTER))
                    }

                }, 130)
 // until this line where the code is not working

            dialog.hide()
            dialog.dismiss()



            true
        } else false
    }

    return false
}
}
android android-recyclerview kotlin android-dialog
1个回答
0
投票

您使用延迟发布来更新回收器,并使用延迟发布来更新视图。如果视图 (

currentbarcode
) 通过延迟发布到回收器来设置或更新,则延迟发布到当前视图的结果将是未定义的。但是,根据你原来的问题是不可能判断的。

您的第一步应该是删除

currentbarcode
的延迟帖子并让自动滚动工作。

当它起作用时,您应该将调用移动到将

currentbarcode
更新到传递给回收器延迟帖子的 lambda 中。

© www.soinside.com 2019 - 2024. All rights reserved.