我的应用程序可以与默认的 Android 图库(如 Picasa)集成吗?
我正在编写一个涉及一些媒体同步的应用程序。我真的很喜欢 Picasa 集成到默认图库的方式 - 主要是文件夹上的 Picasa 图标和缩略图机制(即,它首先加载缩略图,只有当您打开图片时,它实际上从网络上获取完整尺寸)。
我知道应用程序可以使用同步适配器在本机联系人应用程序中显示自定义数据。因此,我正在寻找在本机画廊应用程序中执行类似操作的方法 - 当然,无需开发新的画廊。 我想问题是图库应用程序是否对插件/插件或自定义行为等开放。
据我所知,这是不可能的 - 但也许我错过了一些东西。 谢谢。
I'm writing an app that involves some media syncing. I really love the way Picasa integrates into the default gallery - mainly the Picasa icon on the folder and the thumbnail mechanism (i.e. it loads a thumbnail at first and only if you open the picture it actually gets the full size from the web).
I know an application can show custom data in the native contacts' app for instance, using sync adapters. So I'm looking for ways to do something similar but in the native gallery app - without developing a new gallery of course.
I guess the question is whether the Gallery app is open for addons/plugins or custom behaviors etc.
From what I gather this is impossible - but maybe I'm missing something.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来 Picasa 已内置到 Android Gallery 中:
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android -apps/4.2.2_r1/com/android/gallery3d/picasasource/PicasaSource.java?av=f
您可以尝试从包含照片源的源重建图库,例如
PicasaSource
但看起来您无法修改库存 Android Gallery 的行为。It looks like Picasa is built right into the Android Gallery:
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android-apps/4.2.2_r1/com/android/gallery3d/picasasource/PicasaSource.java?av=f
You could try to rebuild the gallery from the source with your photo source included like
PicasaSource
but it doesn't look like you can modify the behavior of the stock Android Gallery.