, если вы используете view.getViewById(parent, selector).effectiveHeight
, это будет работать, только если представление будет отображено и загружено. даже если вы пытаетесь получить значения для события loaded()
, оно будет равно 0 из-за ошибки nativescript.
Чтобы обойти этот случай, я бы предложил установить время ожидания 200 миллисекунд.
например
home.component.html
<ListView [items]="a" class="list-group">
<ng-template let-country="item" let-i="index" let-odd="odd" let-even="even">
<WrapLayout width="100%" orientation="horizontal" backgroundColor="palegreen">
<StackLayout #abc (loaded)="getSize($event)" width="20%" [height]="testWidth" backgroundColor="lightgray">
<Label [text]="'W'+testWidth" backgroundColor="red"></Label>
<Label text="LA" backgroundColor="green"></Label>
</StackLayout>
</WrapLayout>
</ng-template>
</ListView>
home.component.ts
import { Component, OnInit, ViewChild } from "@angular/core";
import { PercentLength } from "tns-core-modules/ui/styling/style-properties"
import { StackLayout } from "ui/layouts/stack-layout"
@Component({
selector: "Home",
moduleId: module.id,
templateUrl: "./home.component.html",
styleUrls: ['./home.component.css']
})
export class HomeComponent implements OnInit {
a = ['1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2', '1', '2',]
@ViewChild('abc') abc;
testWidth = 0;
constructor() {
}
getSize(args) {
setTimeout(() => {
let stack= <StackLayout>args.object;
var stackSize = args.object.getActualSize();
var stackWidth = stackSize.width;
var stackHeight = stackSize.height;
console.log("stackWidth: " + stackWidth);
console.log("stackHeight: " + stackHeight);
this.testWidth = stackWidth;
}, 200);
}
ngOnInit(): void {
}
toDevicePixels(percentage: PercentLength) {
console.dir(PercentLength.convertToString(percentage))
return PercentLength.toDevicePixels(percentage,0,0);
}
}
В примере кода также показано, как динамически получить высоту и ширину StackLayout и связать их для просмотра.