在我会发现任何这方面的动因时,你会给予帮助。
I have a TabHost with two activities assigned. Tabs are "shops" and "people" Both Activities contain ListViews. Now.. If I click on one of the elements of the ListView I would like to "shoes/people" tab to remain still while only contents of Frame to change (where listView is) so that at any given time I can switch back to other tab and start process from begining.
目前用户在清单调查项目上点击之后
Intent merchant = new Intent(v.getContext(), MerchantView.class);
startActivity(merchant);
一项新的活动已经开始(Tabs dissapear),并完全取而代之。
问题:
在我点击名单上的陈词时,显然形成了全新的观点。 怎样才能在弗拉梅内开展这一商言活动?
This MerchantView will then have another clickable element which again I would like to behave in similar way (Tab remains still).Is my approach here good?(to change activites per click). I mean maybe instead of running new activities for every screen I should change a view in some way
感谢!