I have series of elements in android layout as shown in attached image. one of the element is searchview and below searchview, there are other elements. i have written a code to display list items. when i click on searchView, the list items are shown. but i want the list items to be shown on top of /over lay other elements below search view. so when i add "drawSelectorOnTop", list items still not shown on top of other elements.
<ListView
android:id="@+id/list_view"
style="@style/toolbarText"
android:layout_width="250dp"
android:layout_height="20dp"
android:layout_above="@+id/works_in"
android:layout_alignParentTop="true"
android:background="@color/white"
android:drawSelectorOnTop="true"
android:visibility="visible">
</ListView>