codecamp

鸿蒙OS RecycleItemProvider

RecycleItemProvider

java.lang.Object

|---ohos.agp.components.BaseItemProvider

|---|---ohos.agp.components.RecycleItemProvider

@Deprecated
public abstract class RecycleItemProvider
extends BaseItemProvider

已弃用。 此更改从 API 版本 5 开始生效。由 BaseItemProvider 替换

Since:

3

构造函数摘要

构造函数 描述
RecycleItemProvider() 已弃用。

方法总结

修饰符和类型 方法 描述
int getCacheSize() 已弃用。 此更改从 API 版本 5 开始生效。不再使用。 缓存大小根据布局规则动态计算。
void onItemMoved(int from, int to) 已弃用。 此更改从 API 版本 5 开始生效。不再使用。 替换为 BaseItemProvider 中的 onItemMoved(int from, int to)
void setCacheSize(int size) 已弃用。 此更改从 API 版本 5 开始生效。不再使用。 缓存大小根据布局规则动态计算。
从类 ohos.agp.components.BaseItemProvider 继承的方法
addDataSubscriber, getComponent, getComponentTypeCount, getCount, getFilter, getItem, getItemComponentType, getItemId, notifyDataChanged, notifyDataInvalidated, notifyDataSetItemChanged, notifyDataSetItemInserted, notifyDataSetItemRangeChanged, notifyDataSetItemRangeInserted, notifyDataSetItemRangeRemoved, notifyDataSetItemRemoved, removeDataSubscriber, setFilter
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

构造函数详细信息

RecycleItemProvider

@Deprecated public RecycleItemProvider()

已弃用。

方法详情

onItemMoved

@Deprecated public void onItemMoved(int from, int to)

已弃用。 此更改从 API 版本 5 开始生效。不再使用。 替换为 BaseItemProvider 中的 onItemMoved(int from, int to)

当组件项移动到数据集时调用。

覆盖:

类 BaseItemProvider 中的 onItemMoved

参数:

参数名称 参数描述
from 表示组件项在数据集中的原始位置。
to 表示组件项在数据集中的最新位置。

setCacheSize

@Deprecated public void setCacheSize(int size)

已弃用。 此更改从 API 版本 5 开始生效。不再使用。 缓存大小根据布局规则动态计算。

设置可以创建的最大组件数。

参数:

参数名称 参数描述
size 表示可以创建的最大组件数。

getCacheSize

@Deprecated public int getCacheSize()

已弃用。 此更改从 API 版本 5 开始生效。不再使用。 缓存大小根据布局规则动态计算。

获取可以创建的最大组件数。

返回:

返回可以创建的最大组件数。

鸿蒙OS Rating
鸿蒙OS RoundProgressBar
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

鸿蒙OS 开发

鸿蒙OS 术语

鸿蒙OS Java API参考

鸿蒙OS ohos.aafwk.ability

鸿蒙OS ohos.aafwk.abilityjet.activedata

鸿蒙OS ohos.aafwk.content

鸿蒙OS java.lang

鸿蒙OS java.Util

鸿蒙OS java.Util class

鸿蒙OS ohos.data.dataability

鸿蒙OS ohos.data.dataability class

鸿蒙OS ohos.agp.components

鸿蒙OS ohos.agp.components interface

鸿蒙OS ohos.agp.components class

鸿蒙OS ohos.global.configuration

鸿蒙OS java.io

鸿蒙OS ohos.data.resultset

鸿蒙OS ohos.data.resultset interface

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }