В моем приложении у меня есть список файлов, которые показывают в ListActivity Теперь я хочу добавить дополнительную опцию, как Windows: (Открыть местоположение папки), чтобы открыть каталог из этого файла.File file=new File(path);
Uri url = Uri.fromFile(file);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(url);
startActivity(intent);
< /code>
exeption: < /p>
03-08 21:14:55.451: E/AndroidRuntime(15708):
android.content.ActivityNotFoundException: No Activity found to handle Intent {
act=android.intent.action.VIEW dat=file:///storage/extSdCard/Bluetooth }
< /code>
Что я могу сделать? < /p>
Подробнее здесь: https://stackoverflow.com/questions/289 ... mmatically