Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
ff855195
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
ff855195
编写于
7月 21, 2023
作者:
O
openharmony_ci
提交者:
Gitee
7月 21, 2023
浏览文件
操作
浏览文件
下载
差异文件
!21145 增加DragController.executeDrag接口说明文档
Merge pull request !21145 from sunbees/add_executeDrag_doc
上级
2f145891
572dcf17
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
181 addition
and
0 deletion
+181
-0
zh-cn/application-dev/reference/apis/Readme-CN.md
zh-cn/application-dev/reference/apis/Readme-CN.md
+1
-0
zh-cn/application-dev/reference/apis/js-apis-arkui-dragController.md
...cation-dev/reference/apis/js-apis-arkui-dragController.md
+180
-0
未找到文件。
zh-cn/application-dev/reference/apis/Readme-CN.md
浏览文件 @
ff855195
...
...
@@ -198,6 +198,7 @@
-
UI界面
-
[
@ohos.animator (动画)
](
js-apis-animator.md
)
-
[
@ohos.arkui.componentSnapshot (组件截图)
](
js-apis-arkui-componentSnapshot.md
)
-
[
@ohos.arkui.dragController (DragController)
](
js-apis-arkui-dragController.md
)
-
[
@ohos.arkui.drawableDescriptor (DrawableDescriptor)
](
js-apis-arkui-drawableDescriptor.md
)
-
[
@ohos.arkui.inspector (布局回调)
](
js-apis-arkui-inspector.md
)
-
[
@ohos.arkui.UIContext (UIContext)
](
js-apis-arkui-UIContext.md
)
...
...
zh-cn/application-dev/reference/apis/js-apis-arkui-dragController.md
0 → 100644
浏览文件 @
ff855195
# @ohos.arkui.dragController (DragController)
本模块提供发起主动拖拽的能力,当应用接收到点击或长按等事件时可以主动发起拖拽的动作,并在其中携带拖拽信息。
> **说明:**
>
> 本模块首批接口从 API version 10 开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。
>
> 示例效果请以真机运行为准,当前 IDE 预览器不支持。
## 导入模块
```
js
import
dragController
from
"
@ohos.arkui.dragController
"
;
```
## dragController.executeDrag
executeDrag(custom: CustomBuilder | DragItemInfo, dragInfo: DragInfo, callback: AsyncCallback
<
{event: DragEvent, extraParams: string}
>
): void
主动发起拖拽能力,传入拖拽发起后跟手效果所拖拽的对象以及携带拖拽信息。通过回调返回结果。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------- |
| custom |
[
CustomBuilder
](
../arkui-ts/ts-types.md#custombuilder8
)
\|
[
DragItemInfo
](
../arkui-ts/ts-universal-events-drag-drop.md#dragiteminfo说明
)
| 是 | 拖拽发起后跟手效果所拖拽的对象。 |
| dragInfo |
[
DragInfo
](
#draginfo说明
)
| 是 | 拖拽信息。 |
| callback | AsyncCallback
<
{event:
[
DragEvent
](
../arkui-ts/ts-universal-events-drag-drop.md#dragevent说明
)
, extraParams: string}
>
| 是 | 拖拽结束返回结果的回调。 |
**示例:**
```
ts
import
dragController
from
"
@ohos.arkui.dragController
"
import
UDMF
from
'
@ohos.data.UDMF
'
@
Entry
@
Component
struct
DragControllerPage
{
@
Builder
DraggingBuilder
()
{
Column
()
{
Text
(
"
DraggingBuilder
"
)
}
.
width
(
100
)
.
height
(
100
)
.
backgroundColor
(
Color
.
Blue
)
}
build
()
{
Column
()
{
Button
(
'
touch to execute drag
'
)
.
onTouch
((
event
)
=>
{
if
(
event
.
type
==
TouchType
.
Down
)
{
let
text
=
new
UDMF
.
Text
()
let
unifiedData
=
new
UDMF
.
UnifiedData
(
text
)
let
dragInfo
:
dragController
.
DragInfo
=
{
pointerId
:
0
,
data
:
unifiedData
,
extraParams
:
''
}
dragController
.
executeDrag
(
this
.
DraggingBuilder
.
bind
(
this
),
dragInfo
,
(
err
,
{
event
,
extraParams
})
=>
{
if
(
event
.
getResult
()
==
DragRet
.
DRAG_SUCCESS
)
{
// ...
}
else
if
(
event
.
getResult
()
==
DragRet
.
DRAG_FAILED
)
{
// ...
}
})
}
})
}
}
}
```
## dragController.executeDrag
executeDrag(custom: CustomBuilder | DragItemInfo, dragInfo: DragInfo): Promise
<
{event: DragEvent, extraParams: string}
>
主动发起拖拽能力,传入拖拽发起后跟手效果所拖拽的对象以及携带拖拽信息。通过Promise返回结果。
**系统能力:**
SystemCapability.ArkUI.ArkUI.Full
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------------------------------------------------------------ | ---- | -------------------------------- |
| custom |
[
CustomBuilder
](
../arkui-ts/ts-types.md#custombuilder8
)
\|
[
DragItemInfo
](
../arkui-ts/ts-universal-events-drag-drop.md#dragiteminfo说明
)
| 是 | 拖拽发起后跟手效果所拖拽的对象。 |
| dragInfo |
[
DragInfo
](
#draginfo说明
)
| 是 | 拖拽信息。 |
**返回值:**
| 类型 | 说明 |
| ------------------------------------------------------ | ------------------ |
| Promise
<
{event:
[
DragEvent
](
../arkui-ts/ts-universal-events-drag-drop.md#dragevent说明
)
, extraParams: string}
>
| 拖拽结束返回的结果。 |
**示例:**
```
ts
import
dragController
from
"
@ohos.arkui.dragController
"
import
UDMF
from
'
@ohos.data.UDMF
'
;
import
componentSnapshot
from
'
@ohos.arkui.componentSnapshot
'
;
import
image
from
'
@ohos.multimedia.image
'
;
@
Entry
@
Component
struct
DragControllerPage
{
@
State
pixmap
:
image
.
PixelMap
=
null
@
Builder
DraggingBuilder
()
{
Column
()
{
Text
(
"
DraggingBuilder
"
)
}
.
width
(
100
)
.
height
(
100
)
.
backgroundColor
(
Color
.
Blue
)
}
@
Builder
PixmapBuilder
()
{
Column
()
{
Text
(
"
PixmapBuilder
"
)
}
.
width
(
100
)
.
height
(
100
)
.
backgroundColor
(
Color
.
Blue
)
}
build
()
{
Column
()
{
Button
(
'
touch to execute drag
'
)
.
onTouch
((
event
)
=>
{
if
(
event
.
type
==
TouchType
.
Down
)
{
let
text
=
new
UDMF
.
Text
()
let
unifiedData
=
new
UDMF
.
UnifiedData
(
text
)
let
dragInfo
:
dragController
.
DragInfo
=
{
pointerId
:
0
,
data
:
unifiedData
,
extraParams
:
''
}
componentSnapshot
.
createFromBuilder
(
this
.
PixmapBuilder
.
bind
(
this
)).
then
((
pix
:
image
.
PixelMap
)
=>
{
this
.
pixmap
=
pix
;
let
dragItemInfo
:
DragItemInfo
=
{
pixelMap
:
this
.
pixmap
,
builder
:
this
.
DraggingBuilder
.
bind
(
this
),
extraInfo
:
"
DragItemInfoTest
"
}
dragController
.
executeDrag
(
dragItemInfo
,
dragInfo
)
.
then
(({
event
,
extraParams
})
=>
{
if
(
event
.
getResult
()
==
DragRet
.
DRAG_SUCCESS
)
{
// ...
}
else
if
(
event
.
getResult
()
==
DragRet
.
DRAG_FAILED
)
{
// ...
}
})
.
catch
((
err
)
=>
{
})
})
}
})
}
.
width
(
'
100%
'
)
.
height
(
'
100%
'
)
}
}
```
## DragInfo说明
发起拖拽所需要的属性和拖拽时携带的信息。
| 名称 | 类型 | 必填 | 描述 |
| ----------- | ------------------------------------------------------ | ---- | ---------------------------------------- |
| pointerId | number | 是 | 设置启动拖拽时屏幕上触摸点的Id。 |
| data |
[
UDMF.UnifiedData
](
./js-apis-data-udmf.md#unifieddata
)
| 否 | 设置拖拽过程中携带的数据。 |
| extraParams | string | 否 | 设置拖拽事件额外信息,具体功能暂未实现。 |
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录