我是Android开发的新手。
我已经在我的Android应用程序中添加了一个TabHost,并且可以更改我拥有的三个选项卡的文本。我可以单击它们以显示不同的视图等。
但是在哪里以及如何将图标添加到特定选项卡?不是以编程方式更改它,而是实际上将其添加到布局设计中?在XML中还是以某种方式使用设计器?
执行以下操作:
TabHost tabHost=getTabHost();
TabHost.TabSpec spec;
TabHost.TabSpec spec=tabHost.newTabSpec("hello").setIndicator("hello",getResources().getDrawable(R.drawable.ic_launcher)).setContent(intent);
tabHost.addTab(spec);
这是将图标设置为"安全"选项卡的最简单方法。