UI5响应式布局控件(创建响应式CustomListItem)

时间:2015-03-10 13:56:25

标签: css responsive-design sapui5

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

<!-- 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;
                }

enter image description here

如果浏览器窗口是全屏的,它可以正常工作,但是:在屏幕截图上,您可以看到上面带有StandardlistItems的List和下面的CustomListItems。 ..他们没有回应!您建议使用哪种布局元素来使其表现得像Standardlistitem(缩短文本和响应对齐)?

2 个答案:

答案 0 :(得分:0)

我会将内容包装在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> 

答案 1 :(得分:0)

在我们的团队中,我们用sap.ui.layout.Grid控件替换VBox和HBox。这将使您的布局能够响应并在IE9中工作。

https://sapui5.hana.ondemand.com/sdk/explored.html#/sample/sap.ui.layout.sample.GridInfo/preview