kivy android share image(kivy android 分享图片)
问题描述
我想创建将使用 android ACTION_SEND 意图共享图像的共享按钮.这是我的代码:
I want to create share button that will use android ACTION_SEND intent for sharing image. It's my code:
from kivy.setupconfig import USE_SDL2
def share(path):
if platform == 'android':
from jnius import cast
from jnius import autoclass
if USE_SDL2:
PythonActivity = autoclass('org.kivy.android.PythonActivity')
else:
PythonActivity = autoclass('org.renpy.android.PythonActivity')
Intent = autoclass('android.content.Intent')
String = autoclass('java.lang.String')
Uri = autoclass('android.net.Uri')
File = autoclass('java.io.File')
shareIntent = Intent(Intent.ACTION_SEND)
shareIntent.setType('"image/*"')
imageFile = File(path)
uri = Uri.fromFile(imageFile)
shareIntent.putExtra(Intent.EXTRA_STREAM, uri)
currentActivity = cast('android.app.Activity', PythonActivity.mActivity)
currentActivity.startActivity(shareIntent)
但它不起作用)它抛出此错误 jnius.jnius.JavaException: Invalid instance of u'android/net/Uri' passed for a u'java/lang/String'
in这一行 shareIntent.putExtra(Intent.EXTRA_STREAM, uri)
.我该如何解决这个问题?
But it doesn't work) It throws this error jnius.jnius.JavaException: Invalid instance of u'android/net/Uri' passed for a u'java/lang/String'
in this line shareIntent.putExtra(Intent.EXTRA_STREAM, uri)
. How can i fix this?
推荐答案
我找到了解决方案.您必须将 uri 转换为 parcelable,然后将其传递给意图:
I found solution. You must cast uri to parcelable and then pass it to intent:
parcelable = cast('android.os.Parcelable', uri)
shareIntent.putExtra(Intent.EXTRA_STREAM, parcelable)
这篇关于kivy android 分享图片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:kivy android 分享图片


基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01