我在XML视图中构建了一个CustomListItems列表:

<!-- List with CustomListItem (seperate Icon for event) -->
        <List  class="cTL" id="test-list2" type="Active" headerText="CustomListItems with Icon Control" items="{path : '/products'}">
            <CustomListItem title="boom" counter="3" class="cTL-item" tabindex="1">
                <content>
                    <core:Icon tabindex="2" decorative="false"
                    color="{
                     path: 'price',
                     formatter:'.setPrioColor'
                     }"
                     src="sap-icon://add"></core:Icon>
                    <layout:VerticalLayout class="cTL-text">
                        <layout:content>
                            <Label color="#333333" class="cTL-text-title" text="Orange"></Label>
                            <Text maxLines="1" wrapping="true" class="cTL-text-desc" text="Spain this is a long long long text lalalala onetwothree einzweidreivier Spain this is a long long long text lalalala onetwothree einzweidreivier"></Text>
                        </layout:content>
                    </layout:VerticalLayout>
                </content>
            </CustomListItem>
        </List>


并且我添加了一些自定义css,使其看起来像StandardListItem:

.cTL .cTL-item.sapMLIB {
                    padding: 0 1rem 0 1rem;
                }
                .cTL .sapUiIcon {
                    font-size: 1.375rem;
                    vertical-align: 80%;
                }
                .cTL .cTL-text {
                    margin: 1rem 0.5rem 0.5rem 1rem;
                }
                .cTL .cTL-text .cTL-text-title.sapMLabel {
                    font-size: 1rem;
                    color: #333333;
                }
                .cTL .cTL-text-desc {
                    color: #666666;
                }




因此,如果浏览器窗口为全屏,则效果很好,但是:在屏幕截图上,您可以看到上面带有StandardlistItems的列表和下面的CustomListItems的列表。 ..他们没有反应!您建议使用哪个Layout元素使其表现得像Standardlistitem(缩短Text和响应式对齐)?

最佳答案

我会将内容包装在HBox中,并将图标和其他布局(我更喜欢用VBox而不是VerticalLayout)包装在自己的中心位置VBox中:

(删除了除重要属性以外的所有属性):

<List>
    <CustomListItem>
        <content>
            <HBox justifyContent="Start" fitContainer="true">
                <VBox justifyContent="Center">
                    <core:Icon />
                </VBox>
                <VBox justifyContent="Center">
                    <Label />
                    <Text />
                </VBox>
            </HBox>
        </content>
    </CustomListItem>
</List>

07-26 02:43