Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
106f7b66
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
106f7b66
编写于
8月 22, 2023
作者:
O
openharmony_ci
提交者:
Gitee
8月 22, 2023
浏览文件
操作
浏览文件
下载
差异文件
!9771 UDMF接口拆分
Merge pull request !9771 from 耿凌霞/cherry-pick-1692255112
上级
dd51d73e
88b03e97
变更
6
展开全部
隐藏空白更改
内联
并排
Showing
6 changed file
with
424 addition
and
420 deletion
+424
-420
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/DragController.ets
...i/entry/src/main/ets/MainAbility/pages/DragController.ets
+1
-1
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/DragEvent.ets
...ent_ui/entry/src/main/ets/MainAbility/pages/DragEvent.ets
+1
-1
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/dragAdd.ets
...onent_ui/entry/src/main/ets/MainAbility/pages/dragAdd.ets
+6
-5
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMF.test.ets
...r/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMF.test.ets
+88
-87
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMFApiCallback.test.ets
...UDMFtest/entry/src/main/ets/test/UDMFApiCallback.test.ets
+164
-163
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMFApiPromise.test.ets
.../UDMFtest/entry/src/main/ets/test/UDMFApiPromise.test.ets
+164
-163
未找到文件。
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/DragController.ets
浏览文件 @
106f7b66
...
...
@@ -15,7 +15,7 @@
import dragController from "@ohos.arkui.dragController"
import UDMF from '@ohos.data.
UDMF
';
import UDMF from '@ohos.data.
unifiedDataChannel
';
import componentSnapshot from '@ohos.arkui.componentSnapshot';
import image from '@ohos.multimedia.image';
...
...
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/DragEvent.ets
浏览文件 @
106f7b66
...
...
@@ -13,7 +13,7 @@
* limitations under the License.
*/
import dragController from "@ohos.arkui.dragController"
import UDMF from '@ohos.data.
UDMF'
import UDMF from '@ohos.data.
unifiedDataChannel';
import promptAction from '@ohos.promptAction';
...
...
arkui/ace_ets_component_ui/entry/src/main/ets/MainAbility/pages/dragAdd.ets
浏览文件 @
106f7b66
...
...
@@ -12,7 +12,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import udmf from '@ohos.data.UDMF';
import udmf from '@ohos.data.unifiedDataChannel';
import udmfType from '@ohos.data.uniformTypeDescriptor';
import promptAction from '@ohos.promptAction';
@Entry
@Component
...
...
@@ -116,7 +117,7 @@ struct Index {
.draggable(true)
.margin({left: 15})
.border({color: Color.Black, width: 1})
.allowDrop([udmf
.Unified
DataType.IMAGE])
.allowDrop([udmf
Type.Uniform
DataType.IMAGE])
.onDrop((dragEvent: DragEvent)=> {
this.getDataFromUdmfRetry(dragEvent, (event)=>{
let records: Array<udmf.UnifiedRecord> = event.getData().getRecords();
...
...
@@ -139,7 +140,7 @@ struct Index {
.height(100)
.border({color: Color.Black, width: 1})
.margin(15)
.allowDrop([udmf
.Unified
DataType.TEXT])
.allowDrop([udmf
Type.Uniform
DataType.TEXT])
.onDrop((dragEvent: DragEvent)=>{
console.info("the getDisplayX " + dragEvent.getDisplayX());
console.info("the getDisplayY " + dragEvent.getDisplayY());
...
...
@@ -159,13 +160,13 @@ struct Index {
.width('100%')
.height(200)
.controls(true)
.allowDrop([udmf
.Unified
DataType.VIDEO])
.allowDrop([udmf
Type.Uniform
DataType.VIDEO])
Column() {
Text(this.abstractContent).fontSize(20).width('100%')
Text(this.textContent).fontSize(15).width('100%')
}.width('100%').height(100).margin(20).border({color: Color.Black, width: 1})
.allowDrop([udmf
.Unified
DataType.PLAIN_TEXT])
.allowDrop([udmf
Type.Uniform
DataType.PLAIN_TEXT])
.onDrop((dragEvent)=>{
this.getDataFromUdmfRetry(dragEvent, event=>{
let records: Array<udmf.UnifiedRecord> = event.getData().getRecords();
...
...
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMF.test.ets
浏览文件 @
106f7b66
此差异已折叠。
点击以展开。
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMFApiCallback.test.ets
浏览文件 @
106f7b66
此差异已折叠。
点击以展开。
distributeddatamgr/UDMFtest/UDMFtest/entry/src/main/ets/test/UDMFApiPromise.test.ets
浏览文件 @
106f7b66
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录