1

我在 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]

为什么我不能从中获得 url 结果?

提前致谢!

4

0 回答 0