14
Aucune activité trouvée pour gérer l'intention: android.intent.action.VIEW
Ceci est mon code pour lire le fichier audio 3gp enregistré Intent intent = new Intent(android.content.Intent.ACTION_VIEW); Uri data = Uri.parse(path); intent.setDataAndType(data, "audio/mp3"); startActivity(intent); Mais lors de son exécution dans mon appareil HTC (Android 2.2 Froyo) montre une exception: 05-04 16:37:37.597: WARN/System.err(4065): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW …