5

Basically, I want to reproduce the following feature:

enter image description here

Clicking on the app icon brings up a QuickActionBar that hosts the different possible search filters.

Does the API support this out of the box or do I have to do it myself?

Amokrane Chentir
  • 29,907
  • 37
  • 114
  • 158

1 Answers1

3

In the apps I've worked on, we've implemented our own UI for those. It's not built in.

http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/ is a good resource that I've bookmarked on how to do it.

https://github.com/lorensiuswlt/NewQuickAction is the code.

Matthew Runo
  • 1,387
  • 3
  • 20
  • 43
  • Thanks. Actually, I knew about all the different projects available to build a QuickActionBar (I personally use Greendroid), but I somehow hoped that there was an attribute available in the Searchable Configuration for instance that could do this (even if I have read the documentation for it, many times). – Amokrane Chentir Nov 15 '11 at 08:41
  • To the best of my knowledge there is not. =( – Matthew Runo Nov 15 '11 at 16:31