android – TabHost.newTabSpec中使用的参数标记的用法是什么

android – TabHost.newTabSpec中使用的参数标记的用法是什么,第1张

概述我可以知道,以下代码. // 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) 我可以知道,以下代码.

// 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中使用的参数标记的用法是什么所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1129556.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存