Is there an addHeaderView equivalent for RecyclerView?

后端 未结 19 1858
独厮守ぢ
独厮守ぢ 2020-11-21 23:35

I\'m looking for an equivalent to addHeaderView for a recycler view. Basically I want to have an image with 2 buttons be added as a header to the listview. Is there a differ

19条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 00:12

    It's been a few years, but just in case anyone is reading this later...

    Using the above code, only the header layout is displayed as viewType is always 0.

    The problem is in the constant declaration:

    private static final int HEADER = 0;
    private static final int OTHER = 0;  <== bug 
    

    If you declare them both as zero, then you'll always get zero!

提交回复
热议问题