如何在 android 中将动态创建的位图设置为 livefolder 图标?
如何在 android 中将动态创建的位图设置为 livefolder 图标?
LiveFolder 采用 EXTRA_LIVE_FOLDER_ICON 作为 ShortcutIconResource。有没有办法将动态创建的位图引用为快捷方式图标资源?在下面的代码段中,我想设置新创建的位图文件的文件路径,而不是使用 icon 作为 int 值。
intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON,
Intent.ShortcutIconResource.fromContext(context, icon));
How can I set dynamically created bitmap as livefolder icon in android?
LiveFolder takes EXTRA_LIVE_FOLDER_ICON as ShortcutIconResource. Is there a way to reference dynamically created bitmap as shortcuticonresource? In the following code segment instead of using icon as int value I would like to set the file path for the newly created bitmap file.
intent.putExtra(LiveFolders.EXTRA_LIVE_FOLDER_ICON,
Intent.ShortcutIconResource.fromContext(context, icon));
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无法使用活动文件夹中文件的位图。
It is not possible to use bitmap from a file in a live folder.