// Initialize a TabSpec for each tab and add it to the TabHostspec = tabHost.newTabSpec("artists").setIndicator("The Artists",res.getDrawable(R.drawable.ic_tab_artists)) .setContent(intent);
将“artists”标记为newTagspec参数的目的是什么?我应该使用国际化字符串吗?
spec = tabHost.newTabSpec(getString(R.string.artists)).setIndicator(getString(R.string.the_artists),res.getDrawable(R.drawable.ic_tab_artists)) .setContent(intent);解决方法 我为所有标签做了这个,但你是这样做的:
spec = tabHost.newTabSpec("groups").setIndicator(getString(R.string.tab_groups),res.getDrawable(R.drawable.ic_tab_groups)).setContent(intent);
“组”是它如何计算R.drawable.ic_tab_nameInNewTabSpec.
总结以上是内存溢出为你收集整理的android – TabHost.newTabSpec中使用的参数标记的用法是什么全部内容,希望文章能够帮你解决android – TabHost.newTabSpec中使用的参数标记的用法是什么所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)