我在Android上使用qpython并尝试以下操作:
import androidhelper
droid = androidhelper.Android()
action = "android.intent.action.OPEN_DOCUMENT"
mimetype = "image/*"
categories = ["android.intent.category.OPENABLE"]
intent = droid.makeIntent(action, None, mimetype, None, categories).result
activity = droid.startActivityForResultIntent(intent)
在选择器中选择图像后,结果为:
Result[id=1, result=None, error=None]
为什么我无法从中获得网址结果?
提前致谢!