更改页眉导航菜单中的图标 - SAPUI5

时间:2018-01-23 10:33:24

标签: sapui5

我需要更改标题导航菜单中的图标。我想自定义“主数据显示”的图标。

enter image description here

1 个答案:

答案 0 :(得分:1)

导航菜单中的项目(包括图标)可以使用ShellUIService进行管理。

要更改图标,您必须使用应在菜单中显示的项目列表来调用setHierarchy ( aHierarchyLevels )

aHierarchyLevels的结构如下:

[
    {
        title: "Main View",
        icon: "sap-icon://documents",
        intent: "#Action-sameApp"
    },
    {
        title: "View 2",
        subtitle: "Application view number 2",
        intent: "#Action-sameApp&/View2/"
    },
    {
        title: "View 3",
        subtitle: "Application view number 3",
        intent: "#Action-sameApp&/View3/"
    }
]