build() {
Stack() {
this.renderChildren()
}
.width(this.descriptor.layoutMetrics.frame.size.width)
.height(this.descriptor.layoutMetrics.frame.size.height)
.backgroundColor(convertColorSegmentsToString(this.descriptor.props.backgroundColor))
.position({ y: this.descriptor.layoutMetrics.frame.origin.y, x: this.descriptor.layoutMetrics.frame.origin.x })
.borderWidth(this.descriptor.props.borderWidth)
.borderColor({
left: convertColorSegmentsToString(this.descriptor.props.borderColor.left),
top: convertColorSegmentsToString(this.descriptor.props.borderColor.top),
right: convertColorSegmentsToString(this.descriptor.props.borderColor.right),
bottom: convertColorSegmentsToString(this.descriptor.props.borderColor.bottom)
})
.borderRadius(this.descriptor.props.borderRadius)
.borderStyle(this.getBorderStyle())
.opacity(this.getOpacity())
.transform(this.descriptor.props.transform != undefined ? convertMatrixArrayToMatrix4(this.descriptor.props.transform) : undefined)
.clip(this.getClip())
.hitTestBehavior(this.getHitTestMode())
.shadow(this.getShadow())
}
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。
在使用组件开发应用UI界面时,会为每个组件设置属性,进行UI样式、行为等逻辑处理。当应用中单个组件设置了大量属性且该组件在应用中被大量使用时,单个属性的设置对应用的整体性能会产生较大影响。比如,在RN框架开发中,单个组件需要设置21个属性,且该组件在ForEach循环中使用。在该场景下,由于不知道应用实际需要使用哪些属性,因此把所有的属性通过属性方法的方式设置到组件上。而在实际使用中,大部分应用只会用到其中很少的几个属性,其他属性均维持默认值,这导致了大量属性的冗余设置。
在应用开发中,当注册了大量冗余属性的组件需要在视图上批量展示时对性能有较大影响。此时,可以考虑采用AttributeModifier动态注册组件属性的方式,替换使用属性方法静态注册组件属性的方式。
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。