what i want to achieve is a floating listview above other views(like floating action button)
Is it even possible (something like spinner view which pops up over other views) If yes how do i implement it?
You could use either PopupWindow
or DialogFragment
, depending on your requirements.
Alternatively, you could also use FrameLayout
to achieve the same effect. The first child in the FrameLayout
(presumably your ListView
) would be the one displayed on top of the others.