關於項目中audio文件沒法播放的報告

BUG現象

         Nexus5等部分機型(安卓4.4版本)出現選擇自定義鈴聲後沒法播放的現象。html

BUG 緣由  

4.4的某些機型 使用的intent.setAction(Intent.ACTION_GET_CONTENT)獲取的uriandroid

content://com.android.providers.media.documents/document/audio%3A1407app

這種格式的uri在播放音樂的方法中不識別報錯ide

 

4.3及如下版本使用的intent.setAction(Intent.ACTION_GET_CONTENT)獲取的uri測試

content://media/external/audio/media/91613ui

能夠正常播放spa

 

解決辦法

如下是Google developer.android.com 官方網頁對Android 4.4 APIs的相關改動說明.net

 

Storage accessframeworkhtm

On previousversions of Android, if you want your app to retrieve a specific type of filefrom another app, it must invoke an intent with the ACTION_GET_CONTENT action.This action is still the appropriate way to request a file that you want toimport intoyour app. However, Android 4.4 introduces the ACTION_OPEN_DOCUMENT action,which allows the user to select a file of a specific type and grant your applong-term read access to that file (possibly with write access) withoutimporting the file to your app.blog

其中提到了:

4.3或如下能夠直接用ACTION_GET_CONTENT,4.4或以上,官方建議用ACTION_OPEN_DOCUMENT

 

可是根據其說明ACTION_GET_CONTENT是能夠用的,只是ACTION_OPEN_DOCUMENT被推薦而已。可是事實上某些4.4機型(neuxs 5等)若是還用ACTION_GET_CONTENT的方法,返回的uri4.3是徹底不同的,4.3返回的是帶文件路徑的,4.4返回的倒是content://com.android.providers.media.documents/document/audio:3951這樣的,沒有路徑,只有音頻編號的uri.

 

因此爲了解決這種問題,咱們嘗試使用Google推薦的ACTION_OPEN_DOCUMENT action

測試結果顯示,使用官方推薦的action解決了項目中的問題

代碼以下:

 

  原代碼:

 

                            case 1:

                                IntentintentMyRingtone = new Intent(

                                        Intent.ACTION_GET_CONTENT);

                                intentMyRingtone.setType("audio/*");

                                intentMyRingtone                                                            .setAction(Intent.ACTION_GET_CONTENT);

                                startActivityForResult(intentMyRingtone,

                                        SELECT_MY_RINGTONE);

                                break;

更改之後的代碼:

case 1:

                                IntentintentMyRingtone = new Intent(

                                Intent.ACTION_GET_CONTENT);

                                intentMyRingtone.setType("audio/*");

 

                                if (Build.VERSION.SDK_INT < 19) {

                                intentMyRingtone

                                .setAction(Intent.ACTION_GET_CONTENT);

 

                                }else{

                                intentMyRingtone

                                .setAction(Intent.ACTION_OPEN_DOCUMENT);

                                }

                                startActivityForResult(intentMyRingtone,

                                SELECT_MY_RINGTONE);

                                break;

經驗教訓總結

機型問題有時候老是伴隨着版本問題,遇到問題關注Android版本的不一樣有時候很重要。

前期問題沒改出來也是沒有考慮到報錯手機的一直特徵是4.4.

         Google搜索的關鍵詞也很重要,它有時候決定整個你修改bug的方向問題,提煉出正確的搜索關鍵字可以快速找到相關的文章,提供了別人解決問題的經驗。

         關注Android版本更新,瞭解重要的更新說明,項目的不少bug都是Android版本更新後,項目中的代碼不適用形成的。


另外:不少開發人員也常常遇到p_w_picpath獲取的問題


另附兩個地址供遇到p_w_picpath文件獲取uri問題的朋友參考:http://blog.csdn.net/eastman520/article/details/17756817

http://blog.csdn.net/tempersitu/article/details/20557383

相關文章
相關標籤/搜索