views:

44

answers:

1

I'm new in Android programming and want to know if it's possible to search in other apps.

I mean, I want to find all notes which have #yellow inside the text.

Something like when I use the QuickSearchBox, but I don't want to open the notepad app. Instead I want to read this note inside my own app. Or the same with the calendar, I want to find the next calendar entry which has #yellow in the description, and want to read the description in my app not in the calendar.

Is it possible to say global search, search for #yellow in calendar and give me the description of this entry?

The reason why I want to do it like this is I want to use an app which is already installed as an editor and store for my information.

A: 

As an application I am sure you can make your info available for the QuickSearchBox. The Android Documentation explains it here, but I am not sure if you can use the QuickSearchBox inside your application.

First, I would start reading the src code to understand how it works.

Macarse