程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何隱藏tabhost中的TabWidget

android-如何隱藏tabhost中的TabWidget

編輯:編程綜合問答
如何隱藏tabhost中的TabWidget

我在程序中使用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
}
});
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved