androidsearchtabactivityandroid-tabactivity

Adding Search functionality to TabActivity


As per my application requirement i created a activity which extends TabActivity, added Tabs and different Activities as Content for those tabs. Upto this everything okay, but I want to add search functionality to entire TabActivity, that means Searching is done at the top of TabHost and it should reflect the all tabs contents search.

I know how to add search to a individual Activity but i didn't find any solution for my problem.

Please suggest me if you know any procedure to do this.


Solution

  • As per documentation TabActivity is deprecated:

    http://developer.android.com/reference/android/app/TabActivity.html

    you should use either the FragmentTabHost or the super awesome SherlockActionBar library.

    After you implemen one of those modern ways it's just a matter to add a searchView menu item in your menu and it will be there.