2016-09-03 10 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

@Bruno、更新 – Vyacheslav

関連する問題