คำถามติดแท็ก galaxy-tab

14
ไม่พบกิจกรรมที่จะจัดการกับเจตนา: android.intent.action.VIEW
นี่คือรหัสของฉันเพื่อเล่นไฟล์เสียง 3gp ที่บันทึกไว้ Intent intent = new Intent(android.content.Intent.ACTION_VIEW); Uri data = Uri.parse(path); intent.setDataAndType(data, "audio/mp3"); startActivity(intent); แต่ในขณะที่เรียกใช้ในอุปกรณ์ HTC ของฉัน (Android 2.2 Froyo) แสดงข้อยกเว้น: 05-04 16:37:37.597: WARN/System.err(4065): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=/mnt/sdcard/mnt/sdcard/audio-android.3gp typ=audio/mp3 } 05-04 16:37:37.597: WARN/System.err(4065): at android.app.Instrumentation.checkStartActivityResult(Instrumentation.java:1567) 05-04 16:37:37.597: INFO/ActivityManager(92): Starting activity: Intent { act=android.intent.action.VIEW …
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.