I want to show popup window with Recycler view for menu.
popup window top right corner -> i am showing sort up arrow icon.
So i set the transparent background for popup window and showing recycler view with white background.
`menu.setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));`
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvCategory"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:elevation="10dp"
android:background="@drawable/popup_bg"/>
elevation is not working for recycler view. Its not looking like menu without border and elevation. popup
Kindly help me to solve this issue.