問題描述
我想創(chuàng)建將使用 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 轉(zhuǎn)換為 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)
這篇關(guān)于kivy android 分享圖片的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!