3
我正在寫一個android庫,並遇到問題。正在訪問android庫中的原始資源嗎?
在我的圖書館,我試圖訪問存儲在res/raw
目錄我的圖書館項目的一個這樣的文件:
InputStream inputStream = Resources.getSystem().openRawResource(R.raw.sample);
我也試過:
InputStream inputStream = mContext.getResources().openRawResource(R.raw.sample);
(其中mContext是參考我已經從我的主應用程序傳遞到我的庫)
但是,當我嘗試從我的主項目實例化我的庫時,我收到一個異常file not found
。
是否有可能實際做到這一點,如果是的話我該如何去做呢?還是我需要從我的主項目中獲取資源並將其發送給圖書館?