私はTrying open a specific folder in android using intentから取得しましたが、私のアプリケーションで作成されたフォルダを開くのに以下のコードを使用していますが動作しません。クリックしてAndroidに特定のフォルダを開く
public void openFolder() {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
String pa = sharedPreferences.getString("path", "");
Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse(pa);
intent.setDataAndType(uri, "*/*");
startActivity(Intent.createChooser(intent, "Open folder"));
}
私はACTION_VIEWを歌っていたとき、それはFileManager
以外のすべての可能な手段を示しており、ACTION_GET_CONTENT
では、ストレージ、その後、特定のフォルダを選択したいとSAFモードに連れて行ってくれました。
定義済みのURIフォルダを直接開く方法を教えてください。他の方法はありますか?
はhttp://stackoverflow.com/questions/17165972/android-how-to-open-a-specific-folder-via-intent-and-showを参照してください。 -its-content-in-a-file – sasikumar