Selecting a tab when clicking on list item of another tab
I have three tab (TabA, TabB, TabC), By default TabA selected. In TabC I t开发者_Python百科ooked a list and when user click on list_item (any), I want to show TabA with that data on user clicked. How can I do it? Thank you!
use TabHost.setCurrent(int)
on the List's onItemSelected
event
精彩评论