如何强制使用“溢出菜单”来执行标题栏上的操作?

如何强制使用“溢出菜单”来执行标题栏上的操作?

我在我的 Ubuntu SDK 应用程序中使用标题操作,但我想避免标题栏混乱。

我注意到,在标题栏中添加了一定数量的操作后,Android 风格的“溢出菜单”会自动创建,但是有什么方法可以强制显示它吗?

标题操作代码示例:

head.actions: [
    Action {
        id: reloadAction

        iconName: "reload"
        text: "Reload"

        onTriggered: {
            activityIndicator.running = true
            // do something...
        }
    },
    Action {
        id: aboutAction

        iconName: "info"
        text: "About"

        onTriggered: PopupUtils.open(aboutPopover)
    }
]

相关内容