我已经在这一点上停留了一段时间。您能告诉我如何在StandardListItem上添加两个图标(当前,我的视图是xml类型)。我的xml视图代码如下所示:

    <List
            id="nameList"
            select="selectNameList"
            mode="{device>/listMode}"
            noDataText="{i18n>masterListNoDataText}"
            growing="true"
            growingScrollToLoad="false"
            growingThreshold="{ui>/listPageSize}"
            items="{/components}">
            <items
                id="masterList">


                    <StandardListItem
                    id = "standardListItemID"
                    class="draggable_list"
                    title="{name}"
                    type="{ui>/listItemType}"
                    press="pressNameListItem"
                    icon="sap-icon://wrench"
                    iconInset="true"
                    description="{type}"
                    activeIcon="true">

                    <Image></Image>

                </StandardListItem>


            </items>


这里的问题是我不能在StandardListItem元素的属性中添加两个图标。扳手图标显示在列表的左侧,但看来我无法在右侧添加另一个图标:(

最佳答案

您不能向StandardListItem添加更多图标。请使用CustomListItem

09-18 15:03