我在程序中使用tabhost 。我使用下面的代碼來添加 intent:
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
Intent intent;
Resources res = getResources();
intent = new Intent().setClass(this, AActivity.class);
spec = tabHost.newTabSpec("Files").setIndicator("NAS Files", res.getDrawable(R.drawable.ic)).setContent(intent);
tabHost.addTab(spec);
在 AActivity中,當點擊按鈕時,我想隱藏 tabs(TabWidget),然後點擊兩次顯示tabs。如何實現?
button.setOnClickListerner(new View.OnclickListerner(){
public void onClick(View view) {
tab.setVisable(View.VISABLE);
//or View.GONE
}
});