这就是我希望标签的外观:
http://img14.imageshack.us/img14/5696/tabort.png
这是他们使用 tabHost 的样子:
http://img684.imageshack.us/img684/1030/tabort2.png
所以我想删除图像周围的边框。相反,我希望标签后面有灰色背景图像。谁能帮我解决这个问题(我是 Android 新手)?
以下是一些相关代码:
// Create an Intent to launch an Activity for the tab
intent = new Intent().setClass(this, WashActivity.class);
// Initialize a TabSpec for each tab and add it to the TabHost
spec = tabHost.newTabSpec("washer").setIndicator("",
res.getDrawable(R.drawable.wash_tab))
.setContent(intent);
tabHost.addTab(spec);