I have a simple Android application that has a TabBar and one of the tabs displays a list. This should be the results from a Web-API Call
.
When the user hits the "Search" Button on the phone, a new search should be triggered. I had a look at the example on the android developer pages: http://developer.android.com/resources/samples/SearchableDictionary/index.html
My problem now is that the result will be displayed in a new instance of the results intent. This also makes the TabBar on the top go away. Is there any possibility to display the search result in the intent that was active when the user triggered the search?
I tried messing with the android:launchMode
in the manifest file... but no success :(
Any help is appreciated,
Thanks a lot!