diff options
| author | 2016-11-11 22:39:25 +0000 | |
|---|---|---|
| committer | 2016-11-11 22:39:25 +0000 | |
| commit | 93f130e23253bc916be1f72be6aa88bcf57408c6 (patch) | |
| tree | b1f045e20ebde2267b3f9339935c82276cc03317 | |
| parent | 5e123b336af4e0d3be036389ed449199f77b6c70 (diff) | |
| parent | 7e6fdaab696212f8e5cc4fa475044ef6673e7f25 (diff) | |
List all methods that change data in the docs am: 42c69b9ce4
am: 7e6fdaab69
Change-Id: Ife360d719384d958b6022f29f928a5bbae2ed6ef
| -rw-r--r-- | core/java/android/widget/ArrayAdapter.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/widget/ArrayAdapter.java b/core/java/android/widget/ArrayAdapter.java index 9d228cf667b1..bbc50dafa576 100644 --- a/core/java/android/widget/ArrayAdapter.java +++ b/core/java/android/widget/ArrayAdapter.java @@ -312,10 +312,10 @@ public class ArrayAdapter<T> extends BaseAdapter implements Filterable, ThemedSp } /** - * Control whether methods that change the list ({@link #add}, - * {@link #insert}, {@link #remove}, {@link #clear}) automatically call - * {@link #notifyDataSetChanged}. If set to false, caller must - * manually call notifyDataSetChanged() to have the changes + * Control whether methods that change the list ({@link #add}, {@link #addAll(Collection)}, + * {@link #addAll(Object[])}, {@link #insert}, {@link #remove}, {@link #clear}, + * {@link #sort(Comparator)}) automatically call {@link #notifyDataSetChanged}. If set to + * false, caller must manually call notifyDataSetChanged() to have the changes * reflected in the attached view. * * The default is true, and calling notifyDataSetChanged() |