Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
5d7b32cf
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
5d7b32cf
编写于
2月 01, 2023
作者:
O
openharmony_ci
提交者:
Gitee
2月 01, 2023
浏览文件
操作
浏览文件
下载
差异文件
!7335 modify onScrollBegin to onScrollFrameBegin
Merge pull request !7335 from yeyinglong/scroll
上级
941426b0
f5d1f9ca
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
8 addition
and
8 deletion
+8
-8
arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/list.ets
...ent_apilack/entry/src/main/ets/MainAbility/pages/list.ets
+5
-5
arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/scroll.ets
...t_apilack/entry/src/main/ets/MainAbility/pages/scroll.ets
+3
-3
未找到文件。
arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/list.ets
浏览文件 @
5d7b32cf
...
...
@@ -98,13 +98,13 @@ struct ListLanes {
.alignListItem(ListItemAlign.Start)
.border({ width: 3, color: Color.Red })
.lanes({ minLength: 40, maxLength: 60 })
.onScroll
Begin((dx: number, dy: number
) => {
if ((this.listPosition == 0 &&
dy >= 0) || (this.listPosition == 2 && dy
<= 0)) {
this.scroller.scrollBy(0, -
dy
)
return {
dxRemain: dx, dy
Remain: 0 }
.onScroll
FrameBegin((offset: number, state: ScrollState
) => {
if ((this.listPosition == 0 &&
offset >= 0) || (this.listPosition == 2 && offset
<= 0)) {
this.scroller.scrollBy(0, -
offset
)
return {
offset
Remain: 0 }
}
this.listPosition = 1;
return {
dxRemain: dx, dyRemain: dy
}
return {
offsetRemain: offset
}
try {
var backData = {
...
...
arkui/ace_ets_component_apilack/entry/src/main/ets/MainAbility/pages/scroll.ets
浏览文件 @
5d7b32cf
...
...
@@ -61,9 +61,9 @@ struct ScrollOnScrollBegin {
}.width('100%')
}
.scrollable(ScrollDirection.Vertical)
.onScroll
Begin((dx: number, dy: number
) => {
console.info('
dx=' + dx + ",dy=" + dy
)
return {
dxRemain: dx, dyRemain: dy
}
.onScroll
FrameBegin((offset: number, state: ScrollState
) => {
console.info('
offset=' + offset
)
return {
offsetRemain: offset
}
})
.scrollBar(BarState.On)
.scrollBarColor(Color.Gray)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录