androidnavigation-drawerbubble-popup

Navigation Drawer overlap with BubblePicker view?


I am using a bubble picker library for bubble animation and a material drawer library for navigation bar .

I am facing a issue where the bubble picker view is getting overlap with the navigation drawer.What might be the issue and how can i resolve it .

here is a bubble picker code in my layout

<com.igalata.bubblepicker.rendering.BubblePicker
    android:id="@+id/Bubblepick"
    android:layout_width="300dp"
    android:layout_height="match_parent"
    android:layout_marginLeft="50dp"
    app:backgroundColor="#f1ff78"/>

ScreenShot


Solution

  • Set setZOrderOnTop(false) to bubble picker

    picker = findViewById(R.id.picker);
    picker.setZOrderOnTop(false);