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
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); } }