这是一张图片。我想要这样的 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);