Android L阴影溢出菜单故障

时间:2014-11-19 14:27:11

标签: java android android-5.0-lollipop

我已将我的应用程序移植到新的Android L.该应用程序正常工作,但您可以从照片中看到有溢出的溢出菜单。

enter image description here enter image description here

任何人都知道如何修复它? 感谢

1 个答案:

答案 0 :(得分:2)

这已针对未来的Android版本进行了修复,但与此同时,您可以使用非不透明的弹出菜单背景来解决此问题。 Material中的默认背景是一个2dp的圆角矩形,它可以正常工作,但是如果你绝对需要自定义背景,那么你可以做类似的事情:

RES /抽拉/ my_menu_background.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="rectangle">
    <corners android:radius="2dp" />
    <solid android:color="@color/my_color" />
</shape>