I will explain a little more my scenario.
I'm extending the default music player with other features and informations. So I've a sqlite db where I store those informations in addiction of the MediaStore.
I want to extend the default search suggestions (for audio) with suggestions from my databse.
How can I do it?
I think that the 2 easiest ways are to:
- Join the default search suggestion to add my results
- Or understand where Android is doing the dirty work and merge the actual cursor with mine.
For the second solution I need to know where is the source code of those functions. I really prefear the second solution because I also want to learn how to do that things!
Thank you very much.