ToolTipsManager.clear() cause Exception by dismiss() in remove the Map
If you try to delete more than one item, the problem occurs.
public void clear() {
if (!mTipsMap.isEmpty()) {
for (Map.Entry<Integer, View> entry : mTipsMap.entrySet()) {
dismiss(entry.getValue(), false); //Do not delete items from this part.
}
}
mTipsMap.clear();
}
ToolTipsManager.clear() cause Exception by dismiss() in remove the Map
If you try to delete more than one item, the problem occurs.