如何强制PopupMenu重叠 anchor ?我想重新创建类似于this的内容:

最佳答案

设置overlayAnchor允许我在不设置偏移的情况下重叠 anchor View :

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="popupMenuStyle">@style/PopupMenu</item>
</style>

<style name="PopupMenu" parent="@style/Widget.AppCompat.Light.PopupMenu">
    <item name="overlapAnchor">true</item>
</style>

PopupMenu在其中包装一个ListPopupWindow。此ListPopupWindow使用该overlayAnchor属性包装AppCompatPopupWindow。所有这些都在支持库中。

关于android - 如何强制PopupMenu重叠 anchor ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28202380/

10-10 23:08