拖动添加图片功能,软件添加功能图标,实现新增功能

软件添加功能图标,实现新增功能

HarmonyOS
2024-05-26 15:42:04
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
zbw_apple

使用的核心API

GridObjectSortComponent

核心代码解释

核心代码如下:

import { GridObjectSortComponent, GridObjectSortComponentItem, GridObjectSortComponentOptions, GridObjectSortComponentType } from '@ohos.arkui.advanced.GridObjectSortComponent' 
@Entry 
@Component 
struct Index { 
@State dataList: GridObjectSortComponentItem[] = [ 
  { 
    id: 0, 
    url: $r('app.media.icon'), 
    text: '位置信息', 
    selected: true, 
    order: 3 
  }, 
  { 
    id: 1, 
    url: $r('app.media.icon'), 
    text: '移动数据', 
    selected: true, 
    order: 9 
  }, 
  { 
    id: 2, 
    url: $r('app.media.icon'), 
    text: 'NFC', 
    selected: false, 
    order: 1 
  }, 
  { 
    id: 3, 
    url: $r('app.media.icon'), 
    text: '响铃关闭', 
    selected: true, 
    order: 4 
  }, 
  { 
    id: 4, 
    url: $r('app.media.icon'), 
    text: '响铃', 
    selected: false, 
    order: 5 
  }, 
  { 
    id: 5, 
    url: $r('app.media.icon'), 
    text: '低电量模式', 
    selected: true, 
    order: 6 
  }, 
  { 
    id: 6, 
    url: $r('app.media.icon'), 
    text: '截屏', 
    selected: true, 
    order: 7 
  }, 
  { 
    id: 7, 
    url: $r('app.media.icon'), 
    text: '屏幕录制', 
    selected: true, 
    order: 8 
  }, 
  { 
    id: 8, 
    url: $r('app.media.icon'), 
    text: '超级省电', 
    selected: false, 
    order: 9 
  }, 
] 
​ 
@State option: GridObjectSortComponentOptions = { 
  type: GridObjectSortComponentType.IMAGE_TEXT, 
  imageSize: 45, 
  normalTitle: '菜单', 
  editTitle: '编辑', 
  showAreaTitle: '长按拖动排序', 
  addAreaTitle: '点击添加' 
} 
​ 
build() { 
  Column() { 
    GridObjectSortComponent({ 
      options: this.option, 
      dataList: this.dataList, 
      onSave: ( 
        select: Array<GridObjectSortComponentItem>, 
        unselect: Array<GridObjectSortComponentItem> 
      ) => { 
        // save ToDo 
      }, 
      onCancel: () =>{ 
        // cancel ToDo 
      } 
    }) 
  } 
} 
}
分享
微博
QQ
微信
回复
2024-05-27 20:44:43
相关问题
HarmonyOS元服务添加、删除功能
429浏览 • 1回复 待解决
PolarDB如何手动添加limit分页功能?
2509浏览 • 1回复 待解决
版本新增taskpool的相关功能验证
771浏览 • 1回复 待解决
想要实现一个图片裁剪的功能
223浏览 • 1回复 待解决
Martix实现倾斜的功能
705浏览 • 1回复 待解决
定时提醒功能如何实现?
4833浏览 • 1回复 待解决
Grid如何实现拖拽功能
2427浏览 • 1回复 待解决
SoundPool实现音频播放功能
1205浏览 • 1回复 待解决
HarmonyOS 分享功能如何实现
54浏览 • 1回复 待解决
HarmonyOS 换肤功能怎么实现
345浏览 • 1回复 待解决
arkts 护眼模式功能实现
217浏览 • 0回复 待解决
HarmonyOS 实现RSA加密功能
458浏览 • 1回复 待解决
鸿蒙如何实现分享功能
17422浏览 • 2回复 待解决
如何实现Fraction懒加载功能
7281浏览 • 1回复 待解决
如何实现文本展开收起功能
725浏览 • 1回复 待解决
如何实现类似插槽的功能
1801浏览 • 1回复 待解决