2016-10-13 9 views
1

共有の意図を使用して画像を開こうとしています。 DocuSignアプリはシェアの最下部シートに記載されています。しかし、私がそれをクリックすると、「ドキュメントデータを取得する際にエラーが発生しました」というアラートが表示されます。 DocuSignアプリで画像を開くのを手伝ってください。AndroidのDocusignへの意向

Intent shareIntent = new Intent(); 
    shareIntent.setAction(Intent.ACTION_SEND); 
    shareIntent.putExtra(Intent.EXTRA_TEXT, "Share text"); 
    shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris); 
    shareIntent.setType("image/png"); 
    startActivity(Intent.createChooser(shareIntent, "send"));   

答えて

1

Docusignアプリでは、一度に複数のファイルを開くことはできません。 1つのファイルを送信します。代わりに

shareIntent.putParcelableArrayListExtra(Intent.EXTRA_STREAM, uris); 
+0

感謝の

使用この

shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("your file path here")); 

。それは私のために働いた。 – David

関連する問題