鸿蒙OS ComponentContainer.ArrangeListener
2022-09-07 10:29 更新
ComponentContainer.ArrangeListener
public static interface ComponentContainer.ArrangeListener
提供自定义组件排列流程的接口。
方法总结
修饰符和类型 | 方法 | 描述 |
---|---|---|
boolean | onArrange(int left, int top, int width, int height) | 通知组件容器在布局时设置子位置和大小 |
方法详情
onArrange
boolean onArrange(int left, int top, int width, int height)
通知组件容器在布局时设置子位置和大小
参数:
参数名称 | 参数描述 |
---|---|
left | 表示左边缘的相对位置,以像素为单位。 |
top | 表示上边缘的相对位置,以像素为单位。 |
width | 表示组件宽度,以像素为单位。 |
height | 表示组件高度,以像素为单位。 |
返回:
如果此组件在 onArrange() 中处理了布局,则应返回 True,并且无需在本机端开始布局,否则返回 false。
以上内容是否对您有帮助:
更多建议: