পার্সোনালি আমি এর জন্য রিসাইক্লার ভিউ সাবক্লাস করতে পছন্দ করি না, কারণ আমার কাছে মনে হয় স্প্যানের গণনা সনাক্ত করার জন্য গ্রিডলাউটম্যানেজারের দায়বদ্ধতা রয়েছে। তাই রিসাইক্লার ভিউ এবং গ্রিডলআউটম্যানেজারের জন্য কিছু অ্যান্ড্রয়েড সোর্স কোড খননের পরে আমি আমার নিজস্ব বর্ধিত গ্রিডলাউটম্যানেজার লিখেছি যা কাজটি করে:
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);
}
}
আমি আসলেই মনে করি না কেন আমি লেআউটচিল্ডারে স্প্যান গণনা সেট করতে বেছে নিয়েছিলাম, আমি এই ক্লাসটি কিছুদিন আগে লিখেছিলাম। তবে মুল বক্তব্যটি পরিমাপ করার পরে আমাদের তা করা দরকার। যাতে আমরা এটির উচ্চতা এবং প্রস্থ পেতে পারি।
সম্পাদনা 1: ভুলভাবে স্প্যান গণনা সেট করার কারণে কোডে ত্রুটি ঠিক করা। ব্যবহারকারী এলিইস আবৌডাকে ধন্যবাদ জানানোর জন্য এবং সমাধানটির পরামর্শ দেওয়ার জন্য ।
সম্পাদনা 2: ম্যানুয়াল ওরিয়েন্টেশন হ্যান্ডলিংয়ের সাথে কিছু ছোট রিফ্যাক্টরিং এবং ফিক্স এজ প্রান্ত। ব্যবহারকারীকে ধন্যবাদ এবং রিপোর্টটি সমাধানের পরামর্শ দেওয়ার জন্য @tatarize ।
LayoutManager
এর আউট শিশুদের রাখা এবং কাজ নাRecyclerView
s 'এর