lmw
2025-04-03 8d72ec1b07a4fe0863b41b1140a8c0e679867b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ypx.imagepicker.data;
 
import com.ypx.imagepicker.bean.ImageItem;
 
import java.util.List;
 
public interface IReloadExecutor {
 
    /**
     * 根据当前选择列表,重新刷新选择器选择状态
     *
     * @param selectedList 当前选中列表
     */
    void reloadPickerWithList(List<ImageItem> selectedList);
}