Is it possible to add a special row in android search suggestions?
I added the Search Dialog (Quick 开发者_开发问答Search Box) to my activity, which shows suggestions from my sqlite database. This works very well.
I would like to add a special row at the top of the suggestions ListView to offer the possibility to launch a remote search. For example, I would like to have a row "Search an address from Internet" which will open an other Activity.
Is there a day to do that ?
Thanks a lot
You need to specialize your adapter
Here are some good pointers
Android: custom separator (or even item) in ListView depening on content of item
just have to return the first view as view you want.
精彩评论