How to make RecyclerView header not sticky?

2.9k Views Asked by At

i have the following layout:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.mkallingal.freakingnav.CardsListFragment">


    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/darktext"
        android:layout_marginBottom="6dp"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:text="Cards Listing" />

    <android.support.v7.widget.RecyclerView android:layout_height="match_parent" android:layout_width="match_parent" android:id="@+id/rvCardsList"
        android:scrollbars="vertical" tools:listitem="@layout/recycler_item_layout">
    </android.support.v7.widget.RecyclerView>
</LinearLayout>

the problem is that the TextView is always sticky on the top, while RecyclerView takes the remaining space on the screen. I can horizontal scroll the recyclerview, but the TextView just stay there. How do i resolve this?

2

There are 2 best solutions below

1
On BEST ANSWER

You can add the Header View/TextView at the 0th element of the recyclerView. Here is the good example describing the same.

Is there an addHeaderView equivalent for RecyclerView?

Edit (Copying the source from the link mentioned) :-

There isn't an easy way like listview.addHeaderView() but you can achieve this by adding a type to your adapter for header.

Here is an example

public class HeaderAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
    private static final int TYPE_HEADER = 0;
    private static final int TYPE_ITEM = 1;
    String[] data;

    public HeaderAdapter(String[] data) {
        this.data = data;
    }

    @Override
    public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        if (viewType == TYPE_ITEM) {
            //inflate your layout and pass it to view holder
            return new VHItem(null);
       } else if (viewType == TYPE_HEADER) {
           //inflate your layout and pass it to view holder
           return new VHHeader(null);
       }

        throw new RuntimeException("there is no type that matches the type " + viewType + " + make sure your using types correctly");
    }

    @Override
    public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
        if (holder instanceof VHItem) {
            String dataItem = getItem(position);
            //cast holder to VHItem and set data
        } else if (holder instanceof VHHeader) {
           //cast holder to VHHeader and set data for header.
       }
   }

   @Override
    public int getItemCount() {
       return data.length + 1;
    }

    @Override
    public int getItemViewType(int position) {
       if (isPositionHeader(position))
           return TYPE_HEADER;

       return TYPE_ITEM;
   }

   private boolean isPositionHeader(int position) {
       return position == 0;
   }

   private String getItem(int position) {
       return data[position - 1];
   }

    class VHItem extends RecyclerView.ViewHolder {
        TextView title;

       public VHItem(View itemView) {
           super(itemView);
        }
    }

   class VHHeader extends RecyclerView.ViewHolder {
       Button button;

       public VHHeader(View itemView) {
           super(itemView);
       }
   }
}
0
On

Its also worth checking out, XRecyclerView, it supports pullrefresh , loadingmore and header featrues.