There is a list, when you click on an item, scrolling and clicking through setEnabled(false); blocked setEnabled(false); . When a user clicks on an item sticking to some part, you need to scroll in the direction of this item so that after the click it is fully visible. How to implement this?

    1 answer 1

    Find out the position of the item in the list and call for ListView

     smoothScrollToPosition(int position) 
    • wow :) Thank you so much, class 👍 - Flippy