Fixed
Status Update
Comments
lp...@google.com <lp...@google.com> #2
it was found that
EXIF_TAGS
includesIFD_TIFF_TAGS
twice
This duplication has always been present in the AndroidX version of ExifInterface
. It looks like it was inherited from the platform version, where it was added in 2016 in
so...@gmail.com <so...@gmail.com> #3
The duplication of IFD_TIFF_TAGS
is also discussed in internal
Description
When using a SummaryProvider with MultiSelectListPreference to display a summary of the currently selected items, SummaryProvider#provideSummary() is not called so the summary is not updated to represent the newly selected items. This is because notifyChanged() is not called from within setValues().
Comparison of code from ListPreference and MultiSelectListPreference
--- ListPreference ---
public void setValue(String value) {
// Always persist/notify the first time.
final boolean changed = !TextUtils.equals(mValue, value);
if (changed || !mValueSet) {
mValue = value;
mValueSet = true;
persistString(value);
if (changed) {
notifyChanged();
}
}
}
--- --- ---
--- MultiSelectListPreference ---
public void setValues(Set<String> values) {
mValues.clear();
mValues.addAll(values);
persistStringSet(values);
}
--- --- ---
Current workaround: subclass MultiSelectListPreference and override:
@Override
public void setValues(Set<String> values) {
super.setValues(values);
notifyChanged();
}