在listview项目中,我在布局中使用Visiblity
概念来执行
可见并崩溃。执行Collapse
时,列表视图项不会
完全从布局中删除该视图。
删除名称和ID等项目内容 将空白白色视图放在该特定的listitem位置 列表视图。
下面我分享了一些代码以便更好地理解:
StudentData.ts:
export class StudentData {
constructor(public id: number, public name: string, public collapseData: boolean) {}
}
student.page.html:
<ListView id="listId" [items]="allFeedItems" class="list-group" height="300">
<ng-template let-item="item">
<StackLayout [visibility]="item.collapseData ? 'visible' : 'collapse'" >
<StackLayout orientation="horizontal">
<Label class="item-address" text="address"></Label>
</StackLayout>
.....
</StackLayout>
</ng-template>
</ListView>
发生了什么:
例如:在模态类中,我在hashmap中保存listitems的开关控制值。当回到我的主页(即)StudentPage时,我需要完全隐藏特定的行项。但它只删除内容名称和ID。它不会删除该特定列表视图项位置的空白视图。
我期待的是什么:
删除列表视图中该特定项目位置的空白视图。
答案 0 :(得分:2)
您应该使用不同的模板 -
<ListView [items]="items" [itemTemplateSelector]="templateSelector">
<template nsTemplateKey="big" let-item="item">
<!-- big item template -->
</template>
<template nsTemplateKey="small" let-item="item">
<!-- small item with image -->
</template>
<template nsTemplateKey="small-no-image" let-item="item">
<!-- small item with no image -->
</template>
</ListView>
和TS代码 -
public templateSelector(item: NewsItem, index: number, items:
NewsItem[]) {
if (item.type === "big") {
return "big"
}
if (item.type === "small" && item.imageUrl) {
return "small";
}
if (item.type === "small" && item.imageUrl) {
return "small-no-image";
}
throw new Error("Unrecognized template!")
}
答案 1 :(得分:1)
在dashman的评论中提到。我在子stacklayout中添加了可见性,而不是父stacklayout。然后它没有为特定的列表项目占用空白空格。
<ng-template let-item="item">
<StackLayout>
<StackLayout [visibility]="item.collapseData ? 'visible' : 'collapse'" orientation="horizontal">
<Label class="item-address" text="address"></Label>
</StackLayout>
.....
</StackLayout>
</ng-template>