选项菜单复选框android

时间:2018-01-02 01:03:16

标签: android

我的选项菜单可检查项目有问题

enter image description here

我希望将checkbox放在title的右下方。

他是我的option.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

<group android:checkableBehavior="single">
    <item android:id="@+id/notif"
        android:title="Notification"
        android:checkable = "true"/>
</group>
</menu>

感谢。

1 个答案:

答案 0 :(得分:0)

这只是Android Studio菜单预览中的情况。在您的设备上,它将按预期显示。

例如:

在Android Studio中,我看起来像你的:

Android Studio screenshot

当我启动应用程序并检查时,它看起来像我期望的那样:

Emulator screenshot

希望这有帮助!