1
這是一張圖片。 我希望tabview圖像背景是這樣的。當它沒有被選中時,它顯示白色圖像,當它被選中時,它顯示綠色圖像。
下面是代碼:
Resources resources = getResources();
TabHost tabhost = getTabHost();
Intent one = new Intent().setClass(this, StyleMe.class);
TabSpec tb1=tabhost.newTabSpec("One").setIndicator("",resources.getDrawable
(R.drawable.style_link)).setContent(one);
tabhost.addTab(tb1);