I need to create a RecyclerView
with multiple ViewTypes
. However, on some of the items, I need to display a Tooltip
which should hover over the above row.
In the above image, there are 4 items in the RecyclerView
, and the tooltip in the lower row should overlap on top of the above row (or rows, as required). This tooltip would only be visible in some scenarios - when the lock icon is visible.
The problem is, if I add this tooltip as a TextView
to the row_layout.xml
, and control it's visibility programmatically, it increases the height of that row and does not overlap onto the above layout.
How can I get this view to "hover" over the above rows without displacing them?
If you require code, I can edit this question and post the code too (but I think it might not be necessary here).