UPDATE: NO, NO, NO - It's not a repeat of the question above. Thanks for the down votes but this question is about EVERY item being cut off. Sorry if this was not clear.
I have RecyclerView.Adapter and Recycler View.
return new MyViewHolder(v);
The problem is the last element in the item layout gets cut off for EVERY item. Only half of the rating bar stars are visible so I wanted to increase the height of of the item. The Item layout is shown below"
<FrameLayout
height=wrap_content
....
<RelativeLayout
height=match-parent
<ImageView
width=100dp
height=100dp
centerVertical=true >
<TextView
id=tv1
toTheEndOf="imageId"
toTheRightOf="imageId"
>
<TextView
id=tv2
below="tv1"
toStartOf="tv1"
>
<TextView
id=tv3
below=tv2"
<TextView id=tv4
below=tv3
<RatingBar // After adding tv3 only half of rating bar is shown?
below=tv4
height=wrap-content/>
<RelativeLayout>
</FrameLayout>
UPDATE: Switching the RelativeLayout to wrap_content results in everything shown but now tv2 appears sometimes over tv2 and sometimes above it but too close.