In my opinion there is no good reason for having setXxxListener methods instead of addXxxListener. I'm sure those "set" methods exist simply just due to programmer laziness. It's sad really because supporting a listener list is not much harder than supporting a single listener. It may be true that you normally expect only one interested listener, but there are many good reasons for supporting lists of them anyway.
My favorite example of needing listener lists is to support debugging. You may want to add a diagnostic listener to monitor some activity, but with only setXxxListener methods, the act of debugging can break your code! The bottom line is that when writing an observable class you don't want to make unnecessary assumptions about how it is going to be used.
Here is the boilerplate for some observable class called MyModel:
public interface MyModelChangeListener { public void changed(MyModel model); }
private ArrayList<MyModeChangeListener> listeners = new ArrayList<MyModeChangeListener>();
public void addMyModeChangeListener(MyModeChangeListener tcl) { listeners.add(tcl); }
public void removeMyModeChangeListener(MyModeChangeListener tcl) { listeners.remove(tcl); }
protected void fireMyModeChange() { for(MyModeChangeListener mmcl : listeners) mmcl.changed(this); }
Interested parties add listeners as needed, and the MyModel implementation and any sub-classes simply call
fireMyModeChange(this) whenever their observable states change.
I created issue 5711 in the Android project issue tracker about this problem. Please star it and perhaps add your own comments there if you agree this should be fixed throughout the Android SDK.