मैं स्क्रॉल अवधि के मुद्दे को अधिक पूरी तरह से संबोधित करना चाहता हूं , जिसे आपको किसी भी पुराने उत्तर को चुनना चाहिए, वास्तव में वर्तमान स्थिति से लक्ष्य स्थान तक पहुंचने के लिए आवश्यक स्क्रॉलिंग की मात्रा के अनुसार नाटकीय रूप से (और अस्वीकार्य) अलग-अलग होंगे।
एक समान स्क्रॉल अवधि प्राप्त करने के लिए वेलोसिटी (पिक्सेल प्रति मिलीसेकंड) को प्रत्येक व्यक्तिगत आइटम के आकार के लिए होना चाहिए - और जब आइटम गैर-मानक आयाम के होते हैं तो जटिलता का एक नया स्तर जोड़ा जाता है।
यही कारण है कि RecyclerView डेवलपर्स ने चिकनी स्क्रॉलिंग के इस महत्वपूर्ण पहलू के लिए बहुत कठिन टोकरी को तैनात किया ।
यह मानते हुए कि आप अर्ध-समरूप स्क्रॉल अवधि चाहते हैं, और आपकी सूची में अर्ध-समरूप आइटम शामिल हैं, तो आपको कुछ इस तरह की आवश्यकता होगी।
/** Smoothly scroll to specified position allowing for interval specification. <br>
* Note crude deceleration towards end of scroll
* @param rv Your RecyclerView
* @param toPos Position to scroll to
* @param duration Approximate desired duration of scroll (ms)
* @throws IllegalArgumentException */
private static void smoothScroll(RecyclerView rv, int toPos, int duration) throws IllegalArgumentException {
int TARGET_SEEK_SCROLL_DISTANCE_PX = 10000; // See androidx.recyclerview.widget.LinearSmoothScroller
int itemHeight = rv.getChildAt(0).getHeight(); // Height of first visible view! NB: ViewGroup method!
itemHeight = itemHeight + 33; // Example pixel Adjustment for decoration?
int fvPos = ((LinearLayoutManager)rv.getLayoutManager()).findFirstCompletelyVisibleItemPosition();
int i = Math.abs((fvPos - toPos) * itemHeight);
if (i == 0) { i = (int) Math.abs(rv.getChildAt(0).getY()); }
final int totalPix = i; // Best guess: Total number of pixels to scroll
RecyclerView.SmoothScroller smoothScroller = new LinearSmoothScroller(rv.getContext()) {
@Override protected int getVerticalSnapPreference() {
return LinearSmoothScroller.SNAP_TO_START;
}
@Override protected int calculateTimeForScrolling(int dx) {
int ms = (int) ( duration * dx / (float)totalPix );
// Now double the interval for the last fling.
if (dx < TARGET_SEEK_SCROLL_DISTANCE_PX ) { ms = ms*2; } // Crude deceleration!
//lg(format("For dx=%d we allot %dms", dx, ms));
return ms;
}
};
//lg(format("Total pixels from = %d to %d = %d [ itemHeight=%dpix ]", fvPos, toPos, totalPix, itemHeight));
smoothScroller.setTargetPosition(toPos);
rv.getLayoutManager().startSmoothScroll(smoothScroller);
}
पुनश्च: मैं उस दिन को शाप देता हूं जिस दिन मैंने अंधाधुंध रूप से लिस्ट व्यू को रिसायकलर व्यू में बदलना शुरू किया ।
protected int getHorizontalSnapPreference() { return LinearSmoothScroller.SNAP_TO_START; }
। इसके अलावा मुझे अमूर्त पद्धति को लागू करना थाpublic PointF computeScrollVectorForPosition(int targetPosition) { return layoutManager.computeScrollVectorForPosition(targetPosition); }
।