我正在尝试将图标添加到 android 中的选项卡,但它不起作用。
这是我的代码的一部分,我不确定出了什么问题
th = (TabHost) findViewById(R.id.thbodyview);
th.setup();
TabSpec specs = th.newTabSpec("tag1");
specs.setContent(R.id.Front);
specs.setIndicator("Front",getResources().getDrawable(R.drawable.tab_one));
th.addTab(specs);
当我运行应用程序时,选项卡只显示“前面”并且没有图标,如果有人可以修复它,那就太好了。
谢谢