2016-09-03 58 views

回答

1

您可以將本地文件保存在您的應用程序目錄中並使用共享意圖。可能是這種解決方案可以幫助:

Intent sharingIntent = new Intent(Intent.ACTION_SEND); 
Uri file = Uri.parse(path); 
sharingIntent.setType("*/*"); 
sharingIntent.putExtra(Intent.EXTRA_STREAM, file); 
startActivity(Intent.createChooser(sharingIntent, "Share file")); 

所有這些文件操作都只是應用程序特定的。不過,可能是http://developer.android.com/reference/android/content/Context.html#getExternalCacheDir%28%29可以幫助

https://stackoverflow.com/a/6916553/1979882

+0

的問題,其實是如何保存的文件,現在如何分享。我如何獲得可被其他應用程序讀取的應用程序目錄? – Bruno

+0

@布魯諾,更新 – Vyacheslav

相關問題