维基百科不显示图标
我在 Android 上使用 Wikitude 时遇到问题,POI 相关的图标未显示,我有市场但没有图标。我这样设置图标:
poi1.setIconresource("com.mitcom.wigo:drawable/icon_48x48");
其中 icon_48x48 是资源。 奇怪的是,我能够在开发模式下显示图标,当我将应用程序投放市场时,我遇到了这个问题。 谢谢
I have a problem with Wikitude on Android, the icons related at the POI are not shown, I have the market but without the icon. I set the icon in this way:
poi1.setIconresource("com.mitcom.wigo:drawable/icon_48x48");
where icon_48x48 is the resource.
The strange thing is that I was able to show the icon in dev mode, when I put the app on the market I faced this problem.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
setIconResorce(getResources().getResourceName(R.drawable.icon_48x48));
我认为它会解决您的问题。
have you tried it with
setIconResorce(getResources().getResourceName(R.drawable.icon_48x48));
I think it will solve your problem.