This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import android.database.Cursor; | |
import android.database.CursorWrapper; | |
import android.os.AsyncTask; | |
import android.util.Log; | |
// todo optimize this to not filter through entire array for continuous entries or deletions | |
public class FilterableGuestCursor extends CursorWrapper { | |
public static String TAG = FilterableGuestCursor.class.getSimpleName(); | |
FilterListener mFilterListener; | |
private String filter; |