0
是否有任何可能的方式從pendingIntent啓動的activity中獲取resultCode? PendingIntent.send()的onFinished偵聽器只能立即調用RESULT_CANCELED的resultCode,這對我根本沒有幫助。從啓動活動的PendingIntent獲取resultCode?
是否有任何可能的方式從pendingIntent啓動的activity中獲取resultCode? PendingIntent.send()的onFinished偵聽器只能立即調用RESULT_CANCELED的resultCode,這對我根本沒有幫助。從啓動活動的PendingIntent獲取resultCode?
不可以。PendingIntent的性質使得您永遠無法告訴它何時會被調用:調用的Ativity可能完全關閉,甚至可能在啓動時被卸載。因此,沒有可靠的方式來接收startActivityForResult
的迴應。