标题解释了一切 我想如果用户选择另一个选项卡然后旧点击清除一些文本但我不知道如何到达该事件,我使用此代码创建选项卡
th = (TabHost) findViewById(R.id.tabhost);
th.setup();
spec=th.newTabSpec("tag1");
spec.setContent(R.id.tab1);
spec.setIndicator("tap1");
th.addTab(spec);
spec=th.newTabSpec("tag2");
spec.setContent(R.id.tab2);
spec.setIndicator("tap2");
th.addTab(spec);
th.setCurrentTab(1);
答案 0 :(得分:0)
注册TabHost.OnTabChangeListener
:
tabHost.setOnTabChangedListener( new TabHost.OnTabChangeListener{
public void onTabChanged(String tabId){
// do something here
}
})