Skip to content

Instantly share code, notes, and snippets.

View pedromorgan's full-sized avatar

Pete Morgan pedromorgan

  • Daffodil IT
  • Wales Uk
View GitHub Profile
@tobiasschuerg
tobiasschuerg / FilteredArrayAdapter.java
Created August 31, 2012 15:08
Android Arrayadapter with text filtering for the use with a TextWatcher.
/**
* Arrayadapter (for Android) with text filtering for the use with a TextWatcher.
* Note: the objects in the List need a valid toString() method.
* @author Tobias Schürg
*
*/
public class FilteredArrayAdapter extends ArrayAdapter<ImageObject> {