阅读(1898) (0)

鸿蒙OS ListContainer.ItemSelectedListener

2022-09-05 10:19:31 更新

ListContainer.ItemSelectedListener

public static interface ListContainer.ItemSelectedListener

侦听 ListContainer 对象中组件项的选定事件。 通过调用 onItemSelected 处理选定的事件。

方法总结

修饰符和类型 方法 描述
void onItemSelected(ListContainer parent, Component component, int position, long id) 选择 ListContainer 对象中的组件项时调用。

方法详情

onItemSelected

void onItemSelected(ListContainer parent, Component component, int position, long id)

选择 ListContainer 对象中的组件项时调用。

此回调在以下情况下处理选定事件:

  1. ListContainer 对象中没有项目被选中。
  2. ListContainer 对象中的另一个组件项被选中。

参数:

参数名称 参数描述
parent 指示具有选定组件项的 ListContainer 对象。
component 指示 ListContainer 对象中的选定组件项。
position 指示所选组件项在 ListContainer 对象中的位置。
id 表示所选组件项的行 ID。