我一直坚持这一点。你能告诉我如何在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元素的属性中添加两个图标。扳手图标显示在列表的左侧,但似乎我无法在右侧添加另一个图标:(