9

Does Android come with a way to do Full Text Search?

I know is it not even possible to search contacts by the notes field, being Google the search company, but I would be disappointed if there is no API for that.

AdamHurwitz
  • 9,758
  • 10
  • 72
  • 134
Eduardo
  • 2,327
  • 5
  • 26
  • 43

3 Answers3

8

The easiest way to provide Full Text Search is to use FTS3 in SQLite

Eduardo
  • 2,327
  • 5
  • 26
  • 43
0

Lucene is another approach, faster than SQLite FTS

Ali Rezaiyan
  • 3,011
  • 3
  • 16
  • 27
0

SQLite Database With Android's Room Library

Android's Room library provides full-text search using SQLite.

See: Support full-text search

Firebase Firestore Database

Google's Firebase Firestore outlines a full-text search solution using a 3rd party service, Algolia. Other 3rd party services can be used like Elastic Search.

AdamHurwitz
  • 9,758
  • 10
  • 72
  • 134