私は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 の結果を取得できないのはなぜですか?
前もって感謝します!