简体   繁体   English

更改列表项布局时 RecyclerView 滚动到顶部

[英]When changing list item layout RecyclerView scrolls to top

In my RecyclerView OnLongClicking an item I want to change that item's layout by setting some TextViews to View.GONE and others to View.VISIBLE .在我RecyclerView OnLongClicking一个项目我想通过设置一些更改项目的布局TextViewsView.GONE和他人View.VISIBLE Everything works except that when I long press the item and the layout changes my RecyclerView scrolls to top and I can no longer see the LongPressed view if it was at the bottom.一切正常,除了当我长按该项目并且布局更改时,我的RecyclerView滚动到顶部,如果它在底部,我将无法再看到 LongPressed 视图。

This is ListAdapter that I wrote:这是我写的ListAdapter

class AssetsListAdapter(
    private val onAssetClickListener: OnAssetClickListener,
    private val onAssetLongClickListener: OnAssetLongClickListener
) :
    ListAdapter<Asset, AssetsListAdapter.ViewHolder>(
        AssetDiffCallback()
    ) {

    override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
        val inflater = LayoutInflater.from(parent.context)
        return ViewHolder(
            inflater.inflate(
                R.layout.list_item,
                parent,
                false
            )
        )
    }

    override fun onBindViewHolder(holder: ViewHolder, position: Int) {
        holder.bind(getItem(position), onAssetClickListener, onAssetLongClickListener)
    }

    class ViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView) {

        fun bind(
            asset: Asset,
            onAssetClickListener: OnAssetClickListener,
            onAssetLongClickListener: OnAssetLongClickListener
        ) {
            itemView.item_name.text = asset.name

            // Set icons relatively to category
            when (asset.category) {
                "Cash" -> itemView.item_image.setImageResource(R.drawable.ic_cash)
                "Bank Account" -> itemView.item_image.setImageResource(R.drawable.ic_bank)
                "Investment" -> itemView.item_image.setImageResource(R.drawable.ic_invest)
                "Salary" -> itemView.item_image.setImageResource(R.drawable.ic_job)
            }

            itemView.setOnClickListener {
                onAssetClickListener.onAssetClick(asset)
            }

            // On long click listeners pulls up quick action options
            itemView.setOnLongClickListener {
                view.item_end_text.visibility = View.GONE
                view.quick_actions_layout.visibility = View.VISIBLE
                onAssetLongClickListener.onAssetLongClick(asset, itemView)
                true
            }
        }

    }

    class AssetDiffCallback : DiffUtil.ItemCallback<Asset>() {
        override fun areItemsTheSame(oldItem: Asset, newItem: Asset): Boolean {
            return oldItem.assetId == newItem.assetId
        }

        override fun areContentsTheSame(oldItem: Asset, newItem: Asset): Boolean {
            return oldItem == newItem
        }
    }

    interface OnAssetClickListener {
        fun onAssetClick(asset: Asset)
    }

    interface OnAssetLongClickListener {
        fun onAssetLongClick(asset: Asset, view: View)
    }

}

Ok, so I found out that if you set View.GONE the whole item is redrawn and it resets the RecyclerView ?好的,所以我发现如果你设置View.GONE整个项目被重绘并重置RecyclerView Because setting it to View.INVISIBLE solves the issue.因为将它设置为View.INVISIBLE解决了这个问题。

itemView.setOnLongClickListener {
            view.item_end_text.visibility = View.GONE
            view.quick_actions_layout.visibility = View.VISIBLE
            onAssetLongClickListener.onAssetLongClick(asset, itemView)
            true
        }

to

itemView.setOnLongClickListener {
                view.item_end_text.visibility = View.INVISIBLE
                view.quick_actions_layout.visibility = View.VISIBLE
                onAssetLongClickListener.onAssetLongClick(asset, itemView)
                true
            }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM