I'm sorry for such a silly question, but I can not fathom the name of this component and no amount of googling is yielding results. It's like a dialog window in a chat that holds views. I believe it's a standard UI component (possible in a later version of android).
Asked
Active
Viewed 392 times
2
-
1This may be what you're looking for, but I'm not positive: http://stackoverflow.com/questions/4482865/what-layout-object-is-used-to-produce-a-bubble-popup-in-an-android-ui-not-toa – eldarerathis Apr 06 '11 at 15:00
3 Answers
2
That is a custom component specific to the search app.
The only API which is similar would be the QuickContact class. It provides a similar contextual popup for actions related to a contact (e.g., call, SMS, email, etc.).
You can use third-party libraries such as GreenDroid for similar functionality.

Jake Wharton
- 75,598
- 23
- 223
- 230
1
Its nothing but the Quick Action Dialog ..
Check this for the Quick Action Dialog Widget....

Venky
- 11,049
- 5
- 49
- 66
-
How can I add that to the search screen? See also http://stackoverflow.com/questions/5502330/how-to-add-a-drop-down-next-to-the-search-input-field-in-android – Heiko Rupp Apr 06 '11 at 15:07
-
? Where do I hook that into the standard search manager? Cusomizing the Quick Action Dialog is the 2nd step then :) Thanks Heiko – Heiko Rupp Apr 06 '11 at 15:13
0
On my HTC (with sense, android 2.2) I can get it by adding it trough
longclick -> widget -> 'google search' -> choosing 'all'

Nanne
- 64,065
- 16
- 119
- 163