I am trying to create an application which collects a lot of notes from users. I want to implement full text search on the notes so that the user can get relevant notes from the whole array of notes. I am looking for a solution for this. Full-text-search(FTS) is actually supported by SQLite, but is it available for Android? Can anybody enlighten me on this?
views:
31answers:
1
+1
A:
Full text search in SQLite is supported in Android. You can see an example of it being used in my application here:
http://github.com/bpellin/keepassdroid/blob/master/src/com/keepassdroid/search/SearchDbHelper.java
Brian Pellin
2010-08-25 18:10:26