Android 联系人照片尺寸声明为常量吗?
我的 Nexus S 上的联系人照片为 96x96。我真的不想将这些知识“烘焙”到我的代码中 - 是否有一个常量声明了这一点?我看过,但似乎找不到。
Contact photos are 96x96 on my Nexus S. I really don't want to 'bake' that knowledge into my code - is there a constant somewhere that declares this? I've looked, but can't seem to find one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 android 2.3+ 中,有一个 ThumbnailUtils 类,
但 @hide 对我们隐藏了它。
查看联系人应用程序源代码,文件 AttachImage.java 我发现了另一个有趣的事情:
TODO 和那些 Intent.putExtra 说了很多,即使有缩略图大小常量,它也不会在联系人应用程序中使用。
In android 2.3+ there is a ThumbnailUtils class that has
but that @hide hides it from us.
Looking at the Contacts app source code, file AttachImage.java I found another interesting thing:
That TODO and those intent.putExtra say a lot, even if there is a thumbnail size constant, it isn't used in the contact app.