एंड्रॉइड ऐड रिक्वायरमेंट में पिछले तत्व के नीचे रिक्ति जोड़ते हैं ग्रिडरेलेउटमैन के साथ


84

मैं में अंतिम तत्व पंक्ति के नीचे रिक्ति जोड़ने के लिए कोशिश कर रहा हूँ RecyclerViewके साथ GridLayoutManager। मैंने ItemDecorationइस उद्देश्य के लिए कस्टम का उपयोग नीचे की गद्दी के साथ किया जब इसका अंतिम तत्व निम्नानुसार है:

public class SpaceItemDecoration extends RecyclerView.ItemDecoration {
private int space;
private int bottomSpace = 0;

public SpaceItemDecoration(int space, int bottomSpace) {
    this.space = space;
    this.bottomSpace = bottomSpace;
}

public SpaceItemDecoration(int space) {
    this.space = space;
    this.bottomSpace = 0;
}

@Override
public void getItemOffsets(Rect outRect, View view,
                           RecyclerView parent, RecyclerView.State state) {

    int childCount = parent.getChildCount();
    final int itemPosition = parent.getChildAdapterPosition(view);
    final int itemCount = state.getItemCount();

    outRect.left = space;
    outRect.right = space;
    outRect.bottom = space;
    outRect.top = space;

    if (itemCount > 0 && itemPosition == itemCount - 1) {
        outRect.bottom = bottomSpace;
    }
}
}

लेकिन इस विधि के साथ समस्या यह है कि यह अंतिम पंक्ति में ग्रिड में तत्व ऊंचाइयों को गड़बड़ कर देता है। मैं अनुमान लगा रहा हूं कि GridLayoutManagerबाईं ओर रिक्ति के आधार पर तत्वों के लिए ऊंचाइयों को बदलता है। इसे प्राप्त करने का सही तरीका क्या है?

यह एक के लिए सही ढंग से काम करेगा LinearLayoutManager। बस GridLayoutManagerइसके समस्याग्रस्त होने की स्थिति में ।

इसके बहुत उपयोगी होने की स्थिति में आपके पास FABनीचे की ओर और ऊपर स्क्रॉल करने के लिए अंतिम पंक्ति में आइटम की आवश्यकता होती है FABताकि वे दिखाई दे सकें।

जवाबों:


11

इस समस्या का हल GridLayoutManager के SpanSizeLookup को ओवरराइड करने में निहित है।

आपको गतिविधि या फ़्रैगमेंट में जहां आप RecylerView को फुला रहे हैं, वहां GridlayoutManager में परिवर्तन करना होगा।

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //your code 
    recyclerView.addItemDecoration(new PhotoGridMarginDecoration(context));

    // SPAN_COUNT is the number of columns in the Grid View
    GridLayoutManager gridLayoutManager = new GridLayoutManager(context, SPAN_COUNT);

    // With the help of this method you can set span for every type of view
    gridLayoutManager.setSpanSizeLookup(new GridLayoutManager.SpanSizeLookup() {
        @Override
        public int getSpanSize(int position) {
            if (list.get(position).getType() == TYPE_HEADER) {
                // Will consume the whole width
                return gridLayoutManager.getSpanCount();
            } else if (list.get(position).getType() == TYPE_CONTENT) {
                // will consume only one part of the SPAN_COUNT
                return 1;
            } else if(list.get(position).getType() == TYPE_FOOTER) {
                // Will consume the whole width
                // Will take care of spaces to be left,
                // if the number of views in a row is not equal to 4
                return gridLayoutManager.getSpanCount();
            }
            return gridLayoutManager.getSpanCount();
        }
    });
    recyclerView.setLayoutManager(gridLayoutManager);
}

437

बस एक पैडिंग जोड़ें और सेट करें android:clipToPadding="false"

<RecyclerView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="8dp"
    android:clipToPadding="false" />

इस अद्भुत जवाब के लिए धन्यवाद !


2
इसने मेरे लिए यह किया। त्वरित 'एन आसान समाधान जब आपको पुनर्नवीनीकरण में समान रूप से अंतरिक्ष आइटम की आवश्यकता होती है। धन्यवाद।
Empty2k12

3
यह ठीक वही है जिसकी मुझे तलाश थी! धन्यवाद!
मारियानो ज़ोरिल्ला

1
महान और सरल उपाय। धन्यवाद!
मिखाइल

1
यह अद्भुत है, लेकिन यह लुप्त होती किनारों को गड़बड़ करता है, जैसे कि एंड्रॉइड: आवश्यकता हैFadingEdge = "वर्टिकल" या recyclerView.setVerticalFadingEdgeEnabled (true);
Stephan Henningsen 10

6
यह पुनर्नवीनीकरण दृश्य के स्क्रॉलबार को बहुत नीचे तक नहीं बढ़ाता है। संपादित करें: इस ऐड को रोकने के लिएandroid:scrollbarStyle="outsideOverlay"
सेबस्टियन

8

केवल अंतिम वस्तु के मामले में नीचे के मार्जिन के लिए सजावट इन रिसाइक्लर व्यू का उपयोग करना चाहिए

recyclerView.addItemDecoration(MemberItemDecoration())

public class MemberItemDecoration extends RecyclerView.ItemDecoration {

    @Override
    public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {
        // only for the last one
        if (parent.getChildAdapterPosition(view) == parent.getAdapter().getItemCount() - 1) {
            outRect.bottom = 50/* set your margin here */;
        }
    }
}

6

मेरे पास समान मुद्दा था और स्टैक ओवरफ्लो में एक और धागे का जवाब दिया। इस पृष्ठ पर उतरने वाले अन्य लोगों की मदद करने के लिए, मैं इसे यहां पर दूंगा।
अन्य सभी उत्तरों को पढ़ने के बाद और मुझे उम्मीद के अनुसार मेरे पुनर्नवीनीकरण दृश्य के लिए पुनरावर्तन के लिए लेआउट xml में परिवर्तन देखने को मिला:

        android:paddingBottom="127px"
        android:clipToPadding="false"
        android:scrollbarStyle="outsideOverlay"  

पूरा लेआउट ऐसा दिखता है:

<android.support.v7.widget.RecyclerView
        android:id="@+id/library_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="160px"
        android:layout_marginEnd="160px"
        tools:listitem="@layout/library_list_item" />  

Androidblog.us पर लिंक देखने से पहले और बाद के प्रभाव के लिए: Android Recylerview के अंत स्थान को जोड़ना
मुझे बताएं कि यह आपके लिए कैसे काम करता है।

डेविड


3

आप ग्रिड दृश्य में पहली और अंतिम पंक्तियों का पता लगाने के लिए नीचे दिए गए कोड का उपयोग कर सकते हैं और ऊपर और नीचे के सेट को समान रूप से सेट कर सकते हैं।

@Override
public void getItemOffsets(Rect outRect, View view, RecyclerView parent, State state) {
    LayoutParams params = (LayoutParams) view.getLayoutParams();
    int pos = params.getViewLayoutPosition();
    int spanCount = mGridLayoutManager.getSpanCount();

    boolean isFirstRow = pos < spanCount;
    boolean isLastRow = state.getItemCount() - 1 - pos < spanCount;

    if (isFirstRow) {
      outRect.top = top offset value here
    }

    if (isLastRow) {
      outRect.bottom = bottom offset value here
    }
}

// you also need to keep reference to GridLayoutManager to know the span count
private final GridLayoutManager mGridLayoutManager;

2

आप क्या कर सकते हैं अपने रिसाइकलव्यू में एक खाली पाद लेख जोड़ सकते हैं। आपकी गद्दी आपके पाद का आकार होगी।

@Override
public Holder onCreateViewHolder( ViewGroup parent, int viewType) {
    if (viewType == FOOTER) {
        return new FooterHolder();
    }
    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item, parent, false);
    return new Holder(view);
}

@Override
public void onBindViewHolder(final Holder holder, final int position) {
    //if footer
    if (position == items.getSize() - 1) {
    //do nothing
        return;
    }
    //do regular object bindding

}

@Override
public int getItemViewType(int position) {
    return (position == items.getSize() - 1) ? FOOTER : ITEM_VIEW_TYPE_ITEM;
}

@Override
public int getItemCount() {
    //add one for the footer
    return items.size() + 1;
}

यह एक अच्छा विकल्प है। हालाँकि इसके साथ मेरी समस्या यह है कि मैं पहले से ही एक कस्टम आईटीडीकरण का उपयोग कर रहा हूं जो कि रिसाइकलव्यू में आइटम पोजिशन पर आधारित काम करता है और यह तय करता है कि स्पेसिंग और डिवाइडर आदि को कहां लगाया जाए। अब यदि मैं इस रिक्ति को अतिरिक्त तत्व के रूप में जोड़ता हूं, तो मेरा आईटीडीक्यूलेशन इसे एक तत्व के रूप में गिना जाता है और डिवाइडर को रिक्ति के साथ भी जोड़ता है। इसलिए मैं सोच रहा था कि क्या किसी ने समस्या को हल करने के लिए कस्टम आइटमडेक्यूलेशन का उपयोग करने की कोशिश की है।
pratsJ

इसके अलावा आपका तरीका LinearLayoutManager के मामले में या GridLayoutManager के मामले में अच्छी तरह से काम करेगा अगर ग्रिड की निचली पंक्ति भरी हुई है। अन्यथा अंतरिक्ष खाली तत्व अंतरिक्ष में ग्रिड में जाएगा और पूरे ग्रिड के तल पर नहीं।
pratsJ

0

इस तरह की चीजों के साथ, यह आइटमडेक्यूलेशन का उपयोग करके हल करने की सिफारिश की जाती है क्योंकि वे उस के लिए हैं।

public class ListSpacingDecoration extends RecyclerView.ItemDecoration {

  private static final int VERTICAL = OrientationHelper.VERTICAL;

  private int orientation = -1;
  private int spanCount = -1;
  private int spacing;


  public ListSpacingDecoration(Context context, @DimenRes int spacingDimen) {

    spacing = context.getResources().getDimensionPixelSize(spacingDimen);
  }

  public ListSpacingDecoration(int spacingPx) {

    spacing = spacingPx;
  }

  @Override
  public void getItemOffsets(Rect outRect, View view, RecyclerView parent, RecyclerView.State state) {

    super.getItemOffsets(outRect, view, parent, state);

    if (orientation == -1) {
        orientation = getOrientation(parent);
    }

    if (spanCount == -1) {
        spanCount = getTotalSpan(parent);
    }

    int childCount = parent.getLayoutManager().getItemCount();
    int childIndex = parent.getChildAdapterPosition(view);

    int itemSpanSize = getItemSpanSize(parent, childIndex);
    int spanIndex = getItemSpanIndex(parent, childIndex);

    /* INVALID SPAN */
    if (spanCount < 1) return;

    setSpacings(outRect, parent, childCount, childIndex, itemSpanSize, spanIndex);
  }

  protected void setSpacings(Rect outRect, RecyclerView parent, int childCount, int childIndex, int itemSpanSize, int spanIndex) {

    if (isBottomEdge(parent, childCount, childIndex, itemSpanSize, spanIndex)) {
        outRect.bottom = spacing;
    }
  }

  @SuppressWarnings("all")
  protected int getTotalSpan(RecyclerView parent) {

    RecyclerView.LayoutManager mgr = parent.getLayoutManager();
    if (mgr instanceof GridLayoutManager) {
        return ((GridLayoutManager) mgr).getSpanCount();
    } else if (mgr instanceof StaggeredGridLayoutManager) {
        return ((StaggeredGridLayoutManager) mgr).getSpanCount();
    } else if (mgr instanceof LinearLayoutManager) {
        return 1;
    }

    return -1;
  }

  @SuppressWarnings("all")
  protected int getItemSpanSize(RecyclerView parent, int childIndex) {

    RecyclerView.LayoutManager mgr = parent.getLayoutManager();
    if (mgr instanceof GridLayoutManager) {
        return ((GridLayoutManager) mgr).getSpanSizeLookup().getSpanSize(childIndex);
    } else if (mgr instanceof StaggeredGridLayoutManager) {
        return 1;
    } else if (mgr instanceof LinearLayoutManager) {
        return 1;
    }

    return -1;
  }

  @SuppressWarnings("all")
  protected int getItemSpanIndex(RecyclerView parent, int childIndex) {

    RecyclerView.LayoutManager mgr = parent.getLayoutManager();
    if (mgr instanceof GridLayoutManager) {
        return ((GridLayoutManager) mgr).getSpanSizeLookup().getSpanIndex(childIndex, spanCount);
    } else if (mgr instanceof StaggeredGridLayoutManager) {
        return childIndex % spanCount;
    } else if (mgr instanceof LinearLayoutManager) {
        return 0;
    }

    return -1;
  }

  @SuppressWarnings("all")
  protected int getOrientation(RecyclerView parent) {

    RecyclerView.LayoutManager mgr = parent.getLayoutManager();
    if (mgr instanceof LinearLayoutManager) {
        return ((LinearLayoutManager) mgr).getOrientation();
    } else if (mgr instanceof GridLayoutManager) {
        return ((GridLayoutManager) mgr).getOrientation();
    } else if (mgr instanceof StaggeredGridLayoutManager) {
        return ((StaggeredGridLayoutManager) mgr).getOrientation();
    }

    return VERTICAL;
  }

  protected boolean isBottomEdge(RecyclerView parent, int childCount, int childIndex, int itemSpanSize, int spanIndex) {

    if (orientation == VERTICAL) {

        return isLastItemEdgeValid((childIndex >= childCount - spanCount), parent, childCount, childIndex, spanIndex);

    } else {

        return (spanIndex + itemSpanSize) == spanCount;
    }
  }

  protected boolean isLastItemEdgeValid(boolean isOneOfLastItems, RecyclerView parent, int childCount, int childIndex, int spanIndex) {

    int totalSpanRemaining = 0;
    if (isOneOfLastItems) {
        for (int i = childIndex; i < childCount; i++) {
            totalSpanRemaining = totalSpanRemaining + getItemSpanSize(parent, i);
        }
    }

    return isOneOfLastItems && (totalSpanRemaining <= spanCount - spanIndex);
  }
}

मैंने अपने मूल उत्तर से एक एडिट कॉपी की है जो वास्तव में बराबर रिक्ति के लिए है लेकिन यह एक ही अवधारणा है।


0

आप स्रोत कोड से एक उदाहरण के रूप में DividerItemDecoration.java ले सकते हैं और प्रतिस्थापित कर सकते हैं

for (int i = 0; i < childCount; i++)

साथ में

for (int i = 0; i < childCount - 1; i++)

in drawVertical () और drawHor क्षैतिज ()

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.