2

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).

enter image description here

Daniel Nugent
  • 43,104
  • 15
  • 109
  • 137
accordionfolder
  • 573
  • 4
  • 17
  • 1
    This 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 Answers3

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.

GreenDroid popup example http://lh4.ggpht.com/_OHO4y8YcQbs/TQFQZTft6OI/AAAAAAAAMpY/hAloaii6kRA/s800/gd7.png

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