Not able to add empty view below Recyclerview

前端 未结 4 966
梦谈多话
梦谈多话 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:43

    Add bottom padding to the RecyclerView. Also, don't use android:layout_height="wrap_content" unless you've overridden onMeasure in the layout manager. Current layout managers do not yet support wrap content.

    Add the attribute android:clipToPadding="false" to achieve the goal. As mentioned in comments.

提交回复
热议问题