Not able to add empty view below Recyclerview

前端 未结 4 967
梦谈多话
梦谈多话 2021-01-31 17:13

I was trying my hand with recyclerview and floating action button for an app. The problem I encountered is that the floating action button hinders with the buttons in recyclervi

4条回答
  •  太阳男子
    2021-01-31 17:33

    I have created an utility method for that so you can add padding easily

    public void addLastChildPadding(RecyclerView.ViewHolder holder,int padding,int recyclerListSize,int position){
    
    if(recyclerListSize-1==position){
    holder.itemView.setPadding(0,0,0,padding);
    }
    }
    

提交回复
热议问题