我想弄清楚如何为 FAB 菜单创建扇形背景

I am trying to figure out how to create a Fan shape background for FAB menu

我在 Fragment Navigational Drawer 中为 FAB 菜单添加了一个暗淡的背景。 我想要像

这样的扇形背景

这个。有人可以帮我解决这个问题吗?

直到现在我已经尝试过这个但是形状不合适。

ArcShape shape = new ArcShape(90, 180);
        ShapeDrawable shapeDrawable = new ShapeDrawable(shape);
        shapeDrawable.getPaint().setColor(getResources().getColor(R.color.primary)); 

我通过在线性布局背景中制作一个可绘制对象作为扇形解决了这个问题