Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lightweight text indexing api library for Android [closed]

I've found Lucene, but the binary is 25Mb and my app is 300K. :( I'd like to index some files when the user does a custom search in my app through the Android system search. As for now, I'm doing a simple string match on the content of the files, and scan all directories for files each time. Is there a search api that would do indexing and possibly filter out stopwords to speed the search up?

like image 703
siamii Avatar asked Nov 06 '22 00:11

siamii


1 Answers

Hi you should read the documentation page below. The related part is "Searching your data"

http://developer.android.com/guide/topics/search/search-dialog.html

it says that you should use FTS3 extension of SQLite database.

like image 182
Yekmer Simsek Avatar answered Nov 15 '22 04:11

Yekmer Simsek