Fixed
Status Update
Comments
lp...@google.com <lp...@google.com> #2
Project: platform/frameworks/support
Branch: androidx-master-dev
commit bb5849831cc38dd1d229f2b80702b94d8f01de43
Author: Sumir Kataria <sumir@google.com>
Date: Thu May 02 14:02:53 2019
Correct some old terminology in PeriodicWorkRequest documentation.
Fixes: 131711394
Test: genDocs
Change-Id: Ie8469aa34d02185c6fca9ed18a9ecf4d8bb3c81d
M work/workmanager/src/main/java/androidx/work/PeriodicWorkRequest.java
https://android-review.googlesource.com/954493
https://goto.google.com/android-sha1/bb5849831cc38dd1d229f2b80702b94d8f01de43
Branch: androidx-master-dev
commit bb5849831cc38dd1d229f2b80702b94d8f01de43
Author: Sumir Kataria <sumir@google.com>
Date: Thu May 02 14:02:53 2019
Correct some old terminology in PeriodicWorkRequest documentation.
Fixes: 131711394
Test: genDocs
Change-Id: Ie8469aa34d02185c6fca9ed18a9ecf4d8bb3c81d
M work/workmanager/src/main/java/androidx/work/PeriodicWorkRequest.java
so...@gmail.com <so...@gmail.com> #3
Soh hoy nai kalpona Kori na komol sada Kalo
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();
}