Personaly मुझे इसके लिए RecyclerView को उप-वर्ग करना पसंद नहीं है, क्योंकि मेरे लिए ऐसा लगता है कि स्प्रेड काउंट का पता लगाने की ज़िम्मेदारी GridLayoutManager की है। तो कुछ एंड्रॉइड सोर्स कोड को RecyclerView और GridLayoutManager के लिए खोदने के बाद मैंने अपना खुद का क्लास ग्रिडलाइयूटमैनेजर लिखा, जो काम करता है:
public class GridAutofitLayoutManager extends GridLayoutManager
{
private int columnWidth;
private boolean isColumnWidthChanged = true;
private int lastWidth;
private int lastHeight;
public GridAutofitLayoutManager(@NonNull final Context context, final int columnWidth) {
/* Initially set spanCount to 1, will be changed automatically later. */
super(context, 1);
setColumnWidth(checkedColumnWidth(context, columnWidth));
}
public GridAutofitLayoutManager(
@NonNull final Context context,
final int columnWidth,
final int orientation,
final boolean reverseLayout) {
/* Initially set spanCount to 1, will be changed automatically later. */
super(context, 1, orientation, reverseLayout);
setColumnWidth(checkedColumnWidth(context, columnWidth));
}
private int checkedColumnWidth(@NonNull final Context context, final int columnWidth) {
if (columnWidth <= 0) {
/* Set default columnWidth value (48dp here). It is better to move this constant
to static constant on top, but we need context to convert it to dp, so can't really
do so. */
columnWidth = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 48,
context.getResources().getDisplayMetrics());
}
return columnWidth;
}
public void setColumnWidth(final int newColumnWidth) {
if (newColumnWidth > 0 && newColumnWidth != columnWidth) {
columnWidth = newColumnWidth;
isColumnWidthChanged = true;
}
}
@Override
public void onLayoutChildren(@NonNull final RecyclerView.Recycler recycler, @NonNull final RecyclerView.State state) {
final int width = getWidth();
final int height = getHeight();
if (columnWidth > 0 && width > 0 && height > 0 && (isColumnWidthChanged || lastWidth != width || lastHeight != height)) {
final int totalSpace;
if (getOrientation() == VERTICAL) {
totalSpace = width - getPaddingRight() - getPaddingLeft();
} else {
totalSpace = height - getPaddingTop() - getPaddingBottom();
}
final int spanCount = Math.max(1, totalSpace / columnWidth);
setSpanCount(spanCount);
isColumnWidthChanged = false;
}
lastWidth = width;
lastHeight = height;
super.onLayoutChildren(recycler, state);
}
}
मुझे वास्तव में याद नहीं है कि मैंने onLayoutChildren में स्पैन काउंट क्यों चुना, मैंने कुछ समय पहले यह क्लास लिखी थी। लेकिन यह देखने की जरूरत है कि बिंदु हमें मापा जाता है। तो हम इसे ऊंचाई और चौड़ाई प्राप्त कर सकते हैं।
EDIT 1: गलत तरीके से सेटिंग स्पैन की वजह से कोड में त्रुटि ठीक हुई। धन्यवाद उपयोगकर्ता @Elyees Abouda रिपोर्टिंग और समाधान का सुझाव देने के लिए ।
EDIT 2: मैनुअल ओरिएंटेशन में बदलाव के साथ कुछ छोटे रिफैक्टरिंग और फिक्स एज केस। रिपोर्ट करने और समाधान का सुझाव देने के लिए धन्यवाद उपयोगकर्ता @tatarize ।
LayoutManager
बच्चों को बाहर रखना काम है औरRecyclerView
's