मैं RecyclerView में चिपचिपा हेडर कैसे बना सकता हूं? (बाहरी परिवाद के बिना)


120

मैं अपने शीर्षलेख दृश्यों को स्क्रीन के शीर्ष में ठीक करना चाहता हूं जैसे नीचे की छवि में और बाहरी पुस्तकालयों का उपयोग किए बिना।

यहाँ छवि विवरण दर्ज करें

मेरे मामले में, मैं इसे वर्णानुक्रम में नहीं करना चाहता। मेरे पास दो अलग-अलग प्रकार के विचार हैं (हेडर और सामान्य)। मैं केवल शीर्ष, अंतिम शीर्षलेख को ठीक करना चाहता हूं।


17
यह सवाल RecyclerView के बारे में था, यह ^ लिबास पर आधारित है
Max Ch

जवाबों:


319

यहां मैं समझाऊंगा कि बाहरी पुस्तकालय के बिना इसे कैसे किया जाए। यह बहुत लंबी पोस्ट होगी, इसलिए खुद को कोसें।

सबसे पहले, मुझे @ tim.paetz को स्वीकार करना चाहिए जिनके पोस्ट ने मुझे ItemDecorationएस का उपयोग करके अपने स्वयं के चिपचिपा हेडर को लागू करने की यात्रा के लिए प्रेरित किया । मैंने अपने कार्यान्वयन में उनके कोड के कुछ हिस्सों को उधार लिया था।

जैसा कि आप पहले से ही अनुभव कर चुके हैं, यदि आपने इसे स्वयं करने का प्रयास किया है, तो वास्तव में तकनीक के साथ इसे करने के लिए HOW की एक अच्छी व्याख्या खोजना बहुत कठिन है ItemDecoration। मेरा मतलब है, कदम क्या हैं? इसके पीछे क्या तर्क है? मैं सूची के शीर्ष पर शीर्ष लेख कैसे बना सकता हूँ? इन सवालों के जवाब न जानते हुए कि बाहरी पुस्तकालयों का उपयोग करने के लिए दूसरों को क्या करना पड़ता है, जबकि इसका उपयोग स्वयं ItemDecorationकरना बहुत आसान है।

आरंभिक स्थितियां

  1. आप डेटासेट listविभिन्न प्रकारों के आइटम होने चाहिए ("जावा प्रकार" अर्थ में नहीं, बल्कि "हेडर / आइटम" प्रकार के अर्थ में)।
  2. आपकी सूची पहले से ही क्रमबद्ध होनी चाहिए।
  3. सूची में प्रत्येक आइटम कुछ प्रकार का होना चाहिए - इसमें एक हेडर आइटम होना चाहिए।
  4. listहेडर आइटम में बहुत पहला आइटम होना चाहिए।

यहाँ मैं अपने RecyclerView.ItemDecorationबुलाया के लिए पूर्ण कोड प्रदान करता हूं HeaderItemDecoration। फिर मैं विस्तार से उठाए गए चरणों की व्याख्या करता हूं।

public class HeaderItemDecoration extends RecyclerView.ItemDecoration {

 private StickyHeaderInterface mListener;
 private int mStickyHeaderHeight;

 public HeaderItemDecoration(RecyclerView recyclerView, @NonNull StickyHeaderInterface listener) {
  mListener = listener;

  // On Sticky Header Click
  recyclerView.addOnItemTouchListener(new RecyclerView.OnItemTouchListener() {
   public boolean onInterceptTouchEvent(RecyclerView recyclerView, MotionEvent motionEvent) {
    if (motionEvent.getY() <= mStickyHeaderHeight) {
     // Handle the clicks on the header here ...
     return true;
    }
    return false;
   }

   public void onTouchEvent(RecyclerView recyclerView, MotionEvent motionEvent) {

   }

   public void onRequestDisallowInterceptTouchEvent(boolean disallowIntercept) {

   }
  });
 }

 @Override
 public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {
  super.onDrawOver(c, parent, state);

  View topChild = parent.getChildAt(0);
  if (Util.isNull(topChild)) {
   return;
  }

  int topChildPosition = parent.getChildAdapterPosition(topChild);
  if (topChildPosition == RecyclerView.NO_POSITION) {
   return;
  }

  View currentHeader = getHeaderViewForItem(topChildPosition, parent);
  fixLayoutSize(parent, currentHeader);
  int contactPoint = currentHeader.getBottom();
  View childInContact = getChildInContact(parent, contactPoint);
  if (Util.isNull(childInContact)) {
   return;
  }

  if (mListener.isHeader(parent.getChildAdapterPosition(childInContact))) {
   moveHeader(c, currentHeader, childInContact);
   return;
  }

  drawHeader(c, currentHeader);
 }

 private View getHeaderViewForItem(int itemPosition, RecyclerView parent) {
  int headerPosition = mListener.getHeaderPositionForItem(itemPosition);
  int layoutResId = mListener.getHeaderLayout(headerPosition);
  View header = LayoutInflater.from(parent.getContext()).inflate(layoutResId, parent, false);
  mListener.bindHeaderData(header, headerPosition);
  return header;
 }

 private void drawHeader(Canvas c, View header) {
  c.save();
  c.translate(0, 0);
  header.draw(c);
  c.restore();
 }

 private void moveHeader(Canvas c, View currentHeader, View nextHeader) {
  c.save();
  c.translate(0, nextHeader.getTop() - currentHeader.getHeight());
  currentHeader.draw(c);
  c.restore();
 }

 private View getChildInContact(RecyclerView parent, int contactPoint) {
  View childInContact = null;
  for (int i = 0; i < parent.getChildCount(); i++) {
   View child = parent.getChildAt(i);
   if (child.getBottom() > contactPoint) {
    if (child.getTop() <= contactPoint) {
     // This child overlaps the contactPoint
     childInContact = child;
     break;
    }
   }
  }
  return childInContact;
 }

 /**
  * Properly measures and layouts the top sticky header.
  * @param parent ViewGroup: RecyclerView in this case.
  */
 private void fixLayoutSize(ViewGroup parent, View view) {

  // Specs for parent (RecyclerView)
  int widthSpec = View.MeasureSpec.makeMeasureSpec(parent.getWidth(), View.MeasureSpec.EXACTLY);
  int heightSpec = View.MeasureSpec.makeMeasureSpec(parent.getHeight(), View.MeasureSpec.UNSPECIFIED);

  // Specs for children (headers)
  int childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec, parent.getPaddingLeft() + parent.getPaddingRight(), view.getLayoutParams().width);
  int childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec, parent.getPaddingTop() + parent.getPaddingBottom(), view.getLayoutParams().height);

  view.measure(childWidthSpec, childHeightSpec);

  view.layout(0, 0, view.getMeasuredWidth(), mStickyHeaderHeight = view.getMeasuredHeight());
 }

 public interface StickyHeaderInterface {

  /**
   * This method gets called by {@link HeaderItemDecoration} to fetch the position of the header item in the adapter
   * that is used for (represents) item at specified position.
   * @param itemPosition int. Adapter's position of the item for which to do the search of the position of the header item.
   * @return int. Position of the header item in the adapter.
   */
  int getHeaderPositionForItem(int itemPosition);

  /**
   * This method gets called by {@link HeaderItemDecoration} to get layout resource id for the header item at specified adapter's position.
   * @param headerPosition int. Position of the header item in the adapter.
   * @return int. Layout resource id.
   */
  int getHeaderLayout(int headerPosition);

  /**
   * This method gets called by {@link HeaderItemDecoration} to setup the header View.
   * @param header View. Header to set the data on.
   * @param headerPosition int. Position of the header item in the adapter.
   */
  void bindHeaderData(View header, int headerPosition);

  /**
   * This method gets called by {@link HeaderItemDecoration} to verify whether the item represents a header.
   * @param itemPosition int.
   * @return true, if item at the specified adapter's position represents a header.
   */
  boolean isHeader(int itemPosition);
 }
}

व्यापार का तर्क

तो, मैं इसे कैसे छड़ी करूं?

तुम नहीं। RecyclerViewजब तक आप कस्टम लेआउट के गुरु नहीं होते और आप RecyclerViewदिल से कोड की 12,000+ पंक्तियों को जानते हैं, तब तक आप अपनी पसंद का आइटम नहीं बना सकते और न ही शीर्ष पर रह सकते हैं । इसलिए, जैसा कि यह हमेशा UI डिज़ाइन के साथ जाता है, यदि आप कुछ नहीं बना सकते हैं, तो इसे नकली करें। आप बस शीर्ष लेख का उपयोग करके सब कुछ ऊपर खींचते हैंCanvas । आपको यह भी पता होना चाहिए कि उपयोगकर्ता इस समय किन वस्तुओं को देख सकता है। यह सिर्फ ऐसा होता है, जो ItemDecorationआपको Canvasदृश्य वस्तुओं के बारे में और जानकारी दोनों प्रदान कर सकता है । इसके साथ, यहां मूल चरण हैं:

  1. में onDrawOverकरने की विधि RecyclerView.ItemDecorationबहुत पहले (ऊपर) आइटम है कि उपयोगकर्ता के लिए दिख रहा है मिलता है।

        View topChild = parent.getChildAt(0);
  2. निर्धारित करें कि कौन सा शीर्षलेख इसका प्रतिनिधित्व करता है।

            int topChildPosition = parent.getChildAdapterPosition(topChild);
        View currentHeader = getHeaderViewForItem(topChildPosition, parent);
    
  3. drawHeader()विधि का उपयोग करके RecyclerView के शीर्ष पर उपयुक्त हेडर ड्रा करें ।

मैं आगामी नए शीर्ष लेख को पूरा करने पर व्यवहार को भी लागू करना चाहता हूं: ऐसा प्रतीत होना चाहिए कि आगामी शीर्ष लेख धीरे से शीर्ष वर्तमान शीर्षलेख को दृश्य से बाहर धकेलता है और अंततः उसकी जगह लेता है।

"सब कुछ के ऊपर ड्राइंग" की समान तकनीक यहां लागू होती है।

  1. निर्धारित करें कि शीर्ष "अटक" हेडर नए आगामी एक को कैसे पूरा करता है।

            View childInContact = getChildInContact(parent, contactPoint);
  2. इस संपर्क बिंदु को प्राप्त करें (जो कि स्टिक हैडर के नीचे आपके ड्रू और आगामी हेडर के शीर्ष पर है)।

            int contactPoint = currentHeader.getBottom();
  3. यदि सूची में आइटम इस "संपर्क बिंदु" को अतिरंजित कर रहा है, तो अपने चिपचिपे शीर्षलेख को फिर से बनाएं ताकि उसका तल ट्रैप्सिंग आइटम के शीर्ष पर हो। आप इसे translate()विधि से प्राप्त करते हैं Canvas। परिणामस्वरूप, शीर्ष हेडर का शुरुआती बिंदु दृश्य क्षेत्र से बाहर हो जाएगा, और ऐसा प्रतीत होगा कि "आगामी हेडर द्वारा धक्का दिया जा रहा है"। जब यह पूरी तरह से चला जाता है, तो शीर्ष पर नया हेडर खींचें।

            if (childInContact != null) {
            if (mListener.isHeader(parent.getChildAdapterPosition(childInContact))) {
                moveHeader(c, currentHeader, childInContact);
            } else {
                drawHeader(c, currentHeader);
            }
        }

बाकी को टिप्पणियों और पूरी तरह से एनोटेशन द्वारा समझाया गया है जो मैंने प्रदान की थी।

उपयोग सीधे आगे है:

mRecyclerView.addItemDecoration(new HeaderItemDecoration((HeaderItemDecoration.StickyHeaderInterface) mAdapter));

आपका mAdapterलागू करना चाहिए StickyHeaderInterfaceकाम करने के लिए यह करने के लिए। कार्यान्वयन आपके पास मौजूद डेटा पर निर्भर करता है।

अंत में, यहां मैं आधे पारदर्शी हेडर के साथ एक GIF प्रदान करता हूं, ताकि आप विचार को समझ सकें और वास्तव में देख सकते हैं कि हुड के नीचे क्या चल रहा है।

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

"बस सब कुछ के ऊपर आकर्षित" अवधारणा

और यहां "पुश आउट" चरण में क्या होता है:

"बाहर धक्का" चरण

आशा है कि यह मदद की।

संपादित करें

यहाँ getHeaderPositionForItem()RecyclerView के एडाप्टर में विधि का वास्तविक कार्यान्वयन है :

@Override
public int getHeaderPositionForItem(int itemPosition) {
    int headerPosition = 0;
    do {
        if (this.isHeader(itemPosition)) {
            headerPosition = itemPosition;
            break;
        }
        itemPosition -= 1;
    } while (itemPosition >= 0);
    return headerPosition;
}

कोटलिन में थोड़ा अलग कार्यान्वयन


4
@Sastastyan बस शानदार! जिस तरह से आपने इस चुनौती को हल किया, वह मुझे बहुत पसंद आया। कहने के लिए कुछ भी नहीं, शायद एक प्रश्न के अलावा: क्या "चिपचिपा हैडर" पर एक ऑनक्लीस्टलिस्टर सेट करने का एक तरीका है, या कम से कम उपयोगकर्ता को इसके माध्यम से क्लिक करने से रोकने वाले क्लिक का उपभोग करने के लिए?
डेनिस

17
बहुत अच्छा होगा यदि आप इस कार्यान्वयन का एडाप्टर उदाहरण रखते हैं
सॉलिडस्नेक

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

8
धन्यवाद। दिलचस्प समाधान, लेकिन हर स्क्रॉल घटना पर हेडर दृश्य को बढ़ाने के लिए थोड़ा महंगा है। मैंने सिर्फ तर्क बदले और ViewHolder का उपयोग किया और उन्हें पहले से ही देखे गए विचारों का पुन: उपयोग करने के लिए WeakReferences के एक HashMap में रखें।
माइकल

4
@ सेवस्तन, महान कार्य। मेरे पास एक सुझाव है। हर बार नए हेडर बनाने से बचने के लिए। बस शीर्ष लेख को सहेजें और इसे तभी बदलें जब यह बदल जाए। private View getHeaderViewForItem(int itemPosition, RecyclerView parent) { int headerPosition = mListener.getHeaderPositionForItem(itemPosition); if(headerPosition != mCurrentHeaderIndex) { mCurrentHeader = mListener.createHeaderView(headerPosition, parent); mCurrentHeaderIndex = headerPosition; } return mCurrentHeader; }
वेरा रिवोटी

27

सबसे आसान तरीका सिर्फ अपने RecyclerView के लिए एक आइटम सजावट बनाना है।

import android.graphics.Canvas;
import android.graphics.Rect;
import android.support.annotation.NonNull;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class RecyclerSectionItemDecoration extends RecyclerView.ItemDecoration {

private final int             headerOffset;
private final boolean         sticky;
private final SectionCallback sectionCallback;

private View     headerView;
private TextView header;

public RecyclerSectionItemDecoration(int headerHeight, boolean sticky, @NonNull SectionCallback sectionCallback) {
    headerOffset = headerHeight;
    this.sticky = sticky;
    this.sectionCallback = sectionCallback;
}

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

    int pos = parent.getChildAdapterPosition(view);
    if (sectionCallback.isSection(pos)) {
        outRect.top = headerOffset;
    }
}

@Override
public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {
    super.onDrawOver(c,
                     parent,
                     state);

    if (headerView == null) {
        headerView = inflateHeaderView(parent);
        header = (TextView) headerView.findViewById(R.id.list_item_section_text);
        fixLayoutSize(headerView,
                      parent);
    }

    CharSequence previousHeader = "";
    for (int i = 0; i < parent.getChildCount(); i++) {
        View child = parent.getChildAt(i);
        final int position = parent.getChildAdapterPosition(child);

        CharSequence title = sectionCallback.getSectionHeader(position);
        header.setText(title);
        if (!previousHeader.equals(title) || sectionCallback.isSection(position)) {
            drawHeader(c,
                       child,
                       headerView);
            previousHeader = title;
        }
    }
}

private void drawHeader(Canvas c, View child, View headerView) {
    c.save();
    if (sticky) {
        c.translate(0,
                    Math.max(0,
                             child.getTop() - headerView.getHeight()));
    } else {
        c.translate(0,
                    child.getTop() - headerView.getHeight());
    }
    headerView.draw(c);
    c.restore();
}

private View inflateHeaderView(RecyclerView parent) {
    return LayoutInflater.from(parent.getContext())
                         .inflate(R.layout.recycler_section_header,
                                  parent,
                                  false);
}

/**
 * Measures the header view to make sure its size is greater than 0 and will be drawn
 * https://yoda.entelect.co.za/view/9627/how-to-android-recyclerview-item-decorations
 */
private void fixLayoutSize(View view, ViewGroup parent) {
    int widthSpec = View.MeasureSpec.makeMeasureSpec(parent.getWidth(),
                                                     View.MeasureSpec.EXACTLY);
    int heightSpec = View.MeasureSpec.makeMeasureSpec(parent.getHeight(),
                                                      View.MeasureSpec.UNSPECIFIED);

    int childWidth = ViewGroup.getChildMeasureSpec(widthSpec,
                                                   parent.getPaddingLeft() + parent.getPaddingRight(),
                                                   view.getLayoutParams().width);
    int childHeight = ViewGroup.getChildMeasureSpec(heightSpec,
                                                    parent.getPaddingTop() + parent.getPaddingBottom(),
                                                    view.getLayoutParams().height);

    view.measure(childWidth,
                 childHeight);

    view.layout(0,
                0,
                view.getMeasuredWidth(),
                view.getMeasuredHeight());
}

public interface SectionCallback {

    boolean isSection(int position);

    CharSequence getSectionHeader(int position);
}

}

अपने हेडर के लिए XML recycler_section_header.xml में:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/list_item_section_text"
    android:layout_width="match_parent"
    android:layout_height="@dimen/recycler_section_header_height"
    android:background="@android:color/black"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:textColor="@android:color/white"
    android:textSize="14sp"
/>

और अंत में अपने RecyclerView में आइटम सजावट जोड़ने के लिए:

RecyclerSectionItemDecoration sectionItemDecoration =
        new RecyclerSectionItemDecoration(getResources().getDimensionPixelSize(R.dimen.recycler_section_header_height),
                                          true, // true for sticky, false for not
                                          new RecyclerSectionItemDecoration.SectionCallback() {
                                              @Override
                                              public boolean isSection(int position) {
                                                  return position == 0
                                                      || people.get(position)
                                                               .getLastName()
                                                               .charAt(0) != people.get(position - 1)
                                                                                   .getLastName()
                                                                                   .charAt(0);
                                              }

                                              @Override
                                              public CharSequence getSectionHeader(int position) {
                                                  return people.get(position)
                                                               .getLastName()
                                                               .subSequence(0,
                                                                            1);
                                              }
                                          });
    recyclerView.addItemDecoration(sectionItemDecoration);

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

आप जीथब पर पूरा काम करने वाला उदाहरण पा सकते हैं: https://github.com/paetztm/recycler_view_headers


धन्यवाद। यह मेरे लिए काम किया, हालांकि यह हेडर recyclerview को ओवरलैप करता है। क्या आप मदद कर सकते हैं?
कश्यप जिमुलिया

मुझे यकीन नहीं है कि आपके द्वारा RecyclerView को ओवरलैप करने का क्या मतलब है। "चिपचिपा" बूलियन के लिए, यदि आप सेट करते हैं कि यह गलत है तो यह आइटम सजावट को पंक्तियों के बीच में रख देगा और RecyclerView के शीर्ष पर नहीं रहेगा।
tim.paetz

इसे "स्टिकी" करने के लिए पंक्तियों के बीच में हेडर लगाने के लिए सेट करें, लेकिन यह अटक नहीं है (जो मैं नहीं चाहता) शीर्ष पर। इसे सही पर सेट करते समय, यह शीर्ष पर अटका रहता है, लेकिन यह recyclerview में पहली पंक्ति को ओवरलैप करता है
kashyap jimuliya

मैं देख सकता हूं कि संभावित दो समस्याओं के रूप में, एक खंड कॉलबैक है, आप सत्य के लिए पहला आइटम (0 स्थिति) सेट नहीं कर रहे हैं। दूसरा यह है कि आप गलत ऊंचाई से गुजर रहे हैं। पाठ दृश्य के लिए xml की ऊँचाई उतनी ही होनी चाहिए जितनी ऊँचाई आप खंड आइटम सजावट के निर्माता में पास करते हैं।
टिम.पेट्ज़

3
एक बात जो मैं जोड़ूंगा, वह यह है कि यदि आपके हेडर लेआउट में शीर्षक पाठ दृश्य गतिशील रूप से आकार (जैसे wrap_content) है, तो आप fixLayoutSizeशीर्षक पाठ को सेट करने के बाद भी चलाना चाहेंगे ।
कोपोली

6

मैंने सेवस्तीन के समाधान के ऊपर अपनी खुद की विविधता बनाई है

class HeaderItemDecoration(recyclerView: RecyclerView, private val listener: StickyHeaderInterface) : RecyclerView.ItemDecoration() {

private val headerContainer = FrameLayout(recyclerView.context)
private var stickyHeaderHeight: Int = 0
private var currentHeader: View? = null
private var currentHeaderPosition = 0

init {
    val layout = RelativeLayout(recyclerView.context)
    val params = recyclerView.layoutParams
    val parent = recyclerView.parent as ViewGroup
    val index = parent.indexOfChild(recyclerView)
    parent.addView(layout, index, params)
    parent.removeView(recyclerView)
    layout.addView(recyclerView, LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT)
    layout.addView(headerContainer, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)
}

override fun onDrawOver(c: Canvas, parent: RecyclerView, state: RecyclerView.State) {
    super.onDrawOver(c, parent, state)

    val topChild = parent.getChildAt(0) ?: return

    val topChildPosition = parent.getChildAdapterPosition(topChild)
    if (topChildPosition == RecyclerView.NO_POSITION) {
        return
    }

    val currentHeader = getHeaderViewForItem(topChildPosition, parent)
    fixLayoutSize(parent, currentHeader)
    val contactPoint = currentHeader.bottom
    val childInContact = getChildInContact(parent, contactPoint) ?: return

    val nextPosition = parent.getChildAdapterPosition(childInContact)
    if (listener.isHeader(nextPosition)) {
        moveHeader(currentHeader, childInContact, topChildPosition, nextPosition)
        return
    }

    drawHeader(currentHeader, topChildPosition)
}

private fun getHeaderViewForItem(itemPosition: Int, parent: RecyclerView): View {
    val headerPosition = listener.getHeaderPositionForItem(itemPosition)
    val layoutResId = listener.getHeaderLayout(headerPosition)
    val header = LayoutInflater.from(parent.context).inflate(layoutResId, parent, false)
    listener.bindHeaderData(header, headerPosition)
    return header
}

private fun drawHeader(header: View, position: Int) {
    headerContainer.layoutParams.height = stickyHeaderHeight
    setCurrentHeader(header, position)
}

private fun moveHeader(currentHead: View, nextHead: View, currentPos: Int, nextPos: Int) {
    val marginTop = nextHead.top - currentHead.height
    if (currentHeaderPosition == nextPos && currentPos != nextPos) setCurrentHeader(currentHead, currentPos)

    val params = currentHeader?.layoutParams as? MarginLayoutParams ?: return
    params.setMargins(0, marginTop, 0, 0)
    currentHeader?.layoutParams = params

    headerContainer.layoutParams.height = stickyHeaderHeight + marginTop
}

private fun setCurrentHeader(header: View, position: Int) {
    currentHeader = header
    currentHeaderPosition = position
    headerContainer.removeAllViews()
    headerContainer.addView(currentHeader)
}

private fun getChildInContact(parent: RecyclerView, contactPoint: Int): View? =
        (0 until parent.childCount)
            .map { parent.getChildAt(it) }
            .firstOrNull { it.bottom > contactPoint && it.top <= contactPoint }

private fun fixLayoutSize(parent: ViewGroup, view: View) {

    val widthSpec = View.MeasureSpec.makeMeasureSpec(parent.width, View.MeasureSpec.EXACTLY)
    val heightSpec = View.MeasureSpec.makeMeasureSpec(parent.height, View.MeasureSpec.UNSPECIFIED)

    val childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec,
            parent.paddingLeft + parent.paddingRight,
            view.layoutParams.width)
    val childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec,
            parent.paddingTop + parent.paddingBottom,
            view.layoutParams.height)

    view.measure(childWidthSpec, childHeightSpec)

    stickyHeaderHeight = view.measuredHeight
    view.layout(0, 0, view.measuredWidth, stickyHeaderHeight)
}

interface StickyHeaderInterface {

    fun getHeaderPositionForItem(itemPosition: Int): Int

    fun getHeaderLayout(headerPosition: Int): Int

    fun bindHeaderData(header: View, headerPosition: Int)

    fun isHeader(itemPosition: Int): Boolean
}
}

... और यहाँ स्टिकीहैडरइंटरफेस लागू किया गया है (मैंने इसे सीधे रिसाइकल एडॉप्टर में किया था):

override fun getHeaderPositionForItem(itemPosition: Int): Int =
    (itemPosition downTo 0)
        .map { Pair(isHeader(it), it) }
        .firstOrNull { it.first }?.second ?: RecyclerView.NO_POSITION

override fun getHeaderLayout(headerPosition: Int): Int {
    /* ... 
      return something like R.layout.view_header
      or add conditions if you have different headers on different positions
    ... */
}

override fun bindHeaderData(header: View, headerPosition: Int) {
    if (headerPosition == RecyclerView.NO_POSITION) header.layoutParams.height = 0
    else /* ...
      here you get your header and can change some data on it
    ... */
}

override fun isHeader(itemPosition: Int): Boolean {
    /* ...
      here have to be condition for checking - is item on this position header
    ... */
}

तो, इस मामले में हेडर सिर्फ कैनवास पर नहीं आ रहा है, बल्कि चयनकर्ता या लहर, क्लिकलिस्टर, आदि के साथ दृश्य है।


साझा करने के लिए धन्यवाद! आपने एक नए RelativeLayout में RecyclerView को लपेटना क्यों समाप्त किया?
tmm1

क्योंकि चिपचिपा हैडर का मेरा संस्करण दृश्य है, जो मैंने इस RelativeLayout में RecyclerView (हेडर कॉन्टेनर फ़ील्ड में) के ऊपर रखा है
एंड्री तुर्कोव्स्की

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

recyclerView.addItemDecoration(HeaderItemDecoration(recyclerView, adapter))। क्षमा करें, कार्यान्वयन का उदाहरण नहीं मिल सकता है, जिसका मैंने उपयोग किया था। मैंने उत्तर संपादित किया है - टिप्पणियों में कुछ पाठ जोड़ा
एंड्री तुर्कोवस्की

6

जब आप पहले से ही झिलमिलाहट / निमिष मुद्दे के समाधान की तलाश में हैं DividerItemDecoration। मुझे लगता है कि इसे इस तरह हल किया है:

override fun onDrawOver(...)
    {
        //code from before

       //do NOT return on null
        val childInContact = getChildInContact(recyclerView, currentHeader.bottom)
        //add null check
        if (childInContact != null && mHeaderListener.isHeader(recyclerView.getChildAdapterPosition(childInContact)))
        {
            moveHeader(...)
            return
        }
    drawHeader(...)
}

यह काम करने लगता है, लेकिन क्या कोई पुष्टि कर सकता है कि मैंने कुछ और नहीं तोड़ा?


धन्यवाद, इसने मेरे लिए पलक झपकने का मसला भी हल कर दिया।
यमशिरो रियान

3

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

लेकिन, मैं पुस्तकालय का उपयोग करने का सुझाव देता हूं क्योंकि यह सरल करता है और जिस तरह से आप आमतौर पर RecyclerView के लिए एडेप्टर लागू करते हैं, उसे पुनर्गठित करता है: पहिया को फिर से मजबूत न करें।

मैं यह भी कहूंगा कि डेकोरेटर्स या डेप्रिसिएटेड लाइब्रेरीज़ का इस्तेमाल न करें, साथ ही ऐसी लाइब्रेरीज़ का भी इस्तेमाल न करें जो सिर्फ 1 या 3 चीजें ही करती हैं, आपको दूसरों की लाइब्रेरीज़ को खुद ही मर्ज करना होगा।


विकी और सैंपल पढ़ने के लिए मैंने 2 दिन बिताए, लेकिन फिर भी यह नहीं जानता कि आपके परिवाद का उपयोग करके कैसे संक्षिप्त सूची बनाई जाए। यह नमूना नौसिखिया के लिए काफी जटिल है
गुयेन मिन्ह

1
आप Decoratorएस का उपयोग करने के खिलाफ क्यों हैं ?
सेवस्तन सवणुक

1
@ सेवस्तियन, क्योंकि हम उस बिंदु पर पहुंचेंगे जिस पर हमें श्रोता क्लिक करने की आवश्यकता है और साथ ही बच्चे के विचारों पर भी। हम डेकोरेटर आप बस परिभाषा से नहीं कर सकते।
डेविडस

@ डेविड, क्या आप भविष्य में हेडर पर क्लिक श्रोताओं को सेट करना चाहते हैं? यदि हां, तो यह समझ में आता है। लेकिन फिर भी, यदि आप अपने हेडर को डेटासेट आइटम के रूप में आपूर्ति करते हैं, तो कोई समस्या नहीं होगी। यहां तक ​​कि यजीत बोयार डेकोरेटर्स का उपयोग करने की सलाह देते हैं।
सेवस्तन सवणुक

@Sastastyan, हाँ मेरी लाइब्रेरी में हेडर सूची में अन्य के रूप में एक आइटम है, इसलिए उपयोगकर्ता इसे हेरफेर कर सकते हैं। एक सुदूर भविष्य में एक कस्टम लेआउट प्रबंधक वर्तमान सहायक की जगह लेगा।
डेविडस

3

एक अन्य समाधान, स्क्रॉल श्रोता पर आधारित है। प्रारंभिक स्थितियां सेवस्तीन के उत्तर की तरह ही हैं

RecyclerView recyclerView;
TextView tvTitle; //sticky header view

//... onCreate, initialize, etc...

public void bindList(List<Item> items) { //All data in adapter. Item - just interface for different item types
    adapter = new YourAdapter(items);
    recyclerView.setAdapter(adapter);
    StickyHeaderViewManager<HeaderItem> stickyHeaderViewManager = new StickyHeaderViewManager<>(
            tvTitle,
            recyclerView,
            HeaderItem.class, //HeaderItem - subclass of Item, used to detect headers in list
            data -> { // bind function for sticky header view
                tvTitle.setText(data.getTitle());
            });
    stickyHeaderViewManager.attach(items);
}

ViewHolder और चिपचिपा हैडर के लिए लेआउट।

item_header.xml

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tv_title"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"/>

RecyclerView के लिए लेआउट

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

    <!--it can be any view, but order important, draw over recyclerView-->
    <include
        layout="@layout/item_header"/>

</FrameLayout>

हैडर इटेम के लिए क्लास।

public class HeaderItem implements Item {

    private String title;

    public HeaderItem(String title) {
        this.title = title;
    }

    public String getTitle() {
        return title;
    }

}

यह सब उपयोग है। एडॉप्टर, ViewHolder और अन्य चीजों का कार्यान्वयन, हमारे लिए दिलचस्प नहीं है।

public class StickyHeaderViewManager<T> {

    @Nonnull
    private View headerView;

    @Nonnull
    private RecyclerView recyclerView;

    @Nonnull
    private StickyHeaderViewWrapper<T> viewWrapper;

    @Nonnull
    private Class<T> headerDataClass;

    private List<?> items;

    public StickyHeaderViewManager(@Nonnull View headerView,
                                   @Nonnull RecyclerView recyclerView,
                                   @Nonnull Class<T> headerDataClass,
                                   @Nonnull StickyHeaderViewWrapper<T> viewWrapper) {
        this.headerView = headerView;
        this.viewWrapper = viewWrapper;
        this.recyclerView = recyclerView;
        this.headerDataClass = headerDataClass;
    }

    public void attach(@Nonnull List<?> items) {
        this.items = items;
        if (ViewCompat.isLaidOut(headerView)) {
            bindHeader(recyclerView);
        } else {
            headerView.post(() -> bindHeader(recyclerView));
        }

        recyclerView.addOnScrollListener(new RecyclerView.OnScrollListener() {

            @Override
            public void onScrolled(RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);
                bindHeader(recyclerView);
            }
        });
    }

    private void bindHeader(RecyclerView recyclerView) {
        if (items.isEmpty()) {
            headerView.setVisibility(View.GONE);
            return;
        } else {
            headerView.setVisibility(View.VISIBLE);
        }

        View topView = recyclerView.getChildAt(0);
        if (topView == null) {
            return;
        }
        int topPosition = recyclerView.getChildAdapterPosition(topView);
        if (!isValidPosition(topPosition)) {
            return;
        }
        if (topPosition == 0 && topView.getTop() == recyclerView.getTop()) {
            headerView.setVisibility(View.GONE);
            return;
        } else {
            headerView.setVisibility(View.VISIBLE);
        }

        T stickyItem;
        Object firstItem = items.get(topPosition);
        if (headerDataClass.isInstance(firstItem)) {
            stickyItem = headerDataClass.cast(firstItem);
            headerView.setTranslationY(0);
        } else {
            stickyItem = findNearestHeader(topPosition);
            int secondPosition = topPosition + 1;
            if (isValidPosition(secondPosition)) {
                Object secondItem = items.get(secondPosition);
                if (headerDataClass.isInstance(secondItem)) {
                    View secondView = recyclerView.getChildAt(1);
                    if (secondView != null) {
                        moveViewFor(secondView);
                    }
                } else {
                    headerView.setTranslationY(0);
                }
            }
        }

        if (stickyItem != null) {
            viewWrapper.bindView(stickyItem);
        }
    }

    private void moveViewFor(View secondView) {
        if (secondView.getTop() <= headerView.getBottom()) {
            headerView.setTranslationY(secondView.getTop() - headerView.getHeight());
        } else {
            headerView.setTranslationY(0);
        }
    }

    private T findNearestHeader(int position) {
        for (int i = position; position >= 0; i--) {
            Object item = items.get(i);
            if (headerDataClass.isInstance(item)) {
                return headerDataClass.cast(item);
            }
        }
        return null;
    }

    private boolean isValidPosition(int position) {
        return !(position == RecyclerView.NO_POSITION || position >= items.size());
    }
}

बाइंड हैडर दृश्य के लिए इंटरफ़ेस।

public interface StickyHeaderViewWrapper<T> {

    void bindView(T data);
}

मुझे यह समाधान पसंद है। छोटे टाइपो फाइंडनैनेस्टहेडर में: for (int i = position; position >= 0; i--){ //should be i >= 0
कोन्स्टेंटिन

3

यो,

यदि आप स्क्रीन से बाहर निकलना शुरू करते हैं, तो हम ऐसा ही करते हैं, यदि आप केवल एक प्रकार की होल्डर स्टिक चाहते हैं (हम इन वर्गों की परवाह नहीं कर रहे हैं)। पुनर्नवीनीकरण वस्तुओं के आंतरिक RecyclerView तर्क को तोड़े बिना केवल एक ही रास्ता है और वह है रिसाइक्लरव्यू के हेडर आइटम के शीर्ष पर अतिरिक्त दृश्य बढ़ाना और उसमें डेटा पास करना। मैं कोड को बोलने दूंगा।

import android.graphics.Canvas
import android.graphics.Rect
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.annotation.LayoutRes
import androidx.recyclerview.widget.RecyclerView

class StickyHeaderItemDecoration(@LayoutRes private val headerId: Int, private val HEADER_TYPE: Int) : RecyclerView.ItemDecoration() {

private lateinit var stickyHeaderView: View
private lateinit var headerView: View

private var sticked = false

// executes on each bind and sets the stickyHeaderView
override fun getItemOffsets(outRect: Rect, view: View, parent: RecyclerView, state: RecyclerView.State) {
    super.getItemOffsets(outRect, view, parent, state)

    val position = parent.getChildAdapterPosition(view)

    val adapter = parent.adapter ?: return
    val viewType = adapter.getItemViewType(position)

    if (viewType == HEADER_TYPE) {
        headerView = view
    }
}

override fun onDrawOver(c: Canvas, parent: RecyclerView, state: RecyclerView.State) {
    super.onDrawOver(c, parent, state)
    if (::headerView.isInitialized) {

        if (headerView.y <= 0 && !sticked) {
            stickyHeaderView = createHeaderView(parent)
            fixLayoutSize(parent, stickyHeaderView)
            sticked = true
        }

        if (headerView.y > 0 && sticked) {
            sticked = false
        }

        if (sticked) {
            drawStickedHeader(c)
        }
    }
}

private fun createHeaderView(parent: RecyclerView) = LayoutInflater.from(parent.context).inflate(headerId, parent, false)

private fun drawStickedHeader(c: Canvas) {
    c.save()
    c.translate(0f, Math.max(0f, stickyHeaderView.top.toFloat() - stickyHeaderView.height.toFloat()))
    headerView.draw(c)
    c.restore()
}

private fun fixLayoutSize(parent: ViewGroup, view: View) {

    // Specs for parent (RecyclerView)
    val widthSpec = View.MeasureSpec.makeMeasureSpec(parent.width, View.MeasureSpec.EXACTLY)
    val heightSpec = View.MeasureSpec.makeMeasureSpec(parent.height, View.MeasureSpec.UNSPECIFIED)

    // Specs for children (headers)
    val childWidthSpec = ViewGroup.getChildMeasureSpec(widthSpec, parent.paddingLeft + parent.paddingRight, view.getLayoutParams().width)
    val childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec, parent.paddingTop + parent.paddingBottom, view.getLayoutParams().height)

    view.measure(childWidthSpec, childHeightSpec)

    view.layout(0, 0, view.measuredWidth, view.measuredHeight)
}

}

और फिर आप बस अपने एडॉप्टर में ऐसा करते हैं:

override fun onAttachedToRecyclerView(recyclerView: RecyclerView) {
    super.onAttachedToRecyclerView(recyclerView)
    recyclerView.addItemDecoration(StickyHeaderItemDecoration(R.layout.item_time_filter, YOUR_STICKY_VIEW_HOLDER_TYPE))
}

जहां आपका_स्टीक_व्यू_होल्डर_रवाईट है, यह देखने का तरीका है कि आपका स्टिकी होल्डर माना जाता है।


2

जिनके लिए चिंता हो सकती है। सेवस्तियन के जवाब के आधार पर, क्या आपको इसे क्षैतिज स्क्रॉल बनाना चाहिए। सीधे शब्दों में सब बदल getBottom()करने के लिए getRight()और getTop()करने के लिएgetLeft()


-1

इसका जवाब पहले ही यहां दिया जा चुका है। यदि आप किसी भी पुस्तकालय का उपयोग नहीं करना चाहते हैं, तो आप इन चरणों का पालन कर सकते हैं:

  1. नाम से डेटा के साथ सूची को क्रमबद्ध करें
  2. डेटा के साथ सूची के माध्यम से Iterate करें, और उस स्थान पर जब वर्तमान का पहला अक्षर! = अगले आइटम का पहला अक्षर, "विशेष" प्रकार की वस्तु डालें।
  3. जब आइटम "विशेष" हो, तो अपने एडेप्टर को विशेष दृश्य के अंदर रखें।

स्पष्टीकरण:

में onCreateViewHolderविधि हम जांच कर सकते हैं viewTypeऔर मूल्य (हमारे "विशेष" प्रकार) के आधार पर एक विशेष लेआउट बढ़ा देते हैं।

उदाहरण के लिए:

public static final int TITLE = 0;
public static final int ITEM = 1;

@Override
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    if (context == null) {
        context = parent.getContext();
    }
    if (viewType == TITLE) {
        view = LayoutInflater.from(context).inflate(R.layout.recycler_adapter_title, parent,false);
        return new TitleElement(view);
    } else if (viewType == ITEM) {
        view = LayoutInflater.from(context).inflate(R.layout.recycler_adapter_item, parent,false);
        return new ItemElement(view);
    }
    return null;
}

जहां class ItemElementऔर class TitleElementआम की तरह दिख सकते हैं ViewHolder:

public class ItemElement extends RecyclerView.ViewHolder {
//TextView text;

public ItemElement(View view) {
    super(view);
   //text = (TextView) view.findViewById(R.id.text);

}

तो उस सब का विचार दिलचस्प है। लेकिन मुझे दिलचस्पी है अगर यह प्रभावी रूप से है, क्योंकि हमें डेटा सूची को सॉर्ट करने की आवश्यकता है। और मुझे लगता है कि यह गति को नीचे ले जाएगा। अगर इसके बारे में कोई विचार है, कृपया मुझे लिखें :)

और यह भी खोला सवाल: शीर्ष पर "विशेष" लेआउट को कैसे रखना है, जबकि आइटम रीसाइक्लिंग हैं। हो सकता है कि इसके साथ सभी को मिलाएं CoordinatorLayout


क्या इसे कर्सरडेप्टर के साथ बनाना संभव है
एम। योगेश्वरन

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