我想通過在活動中創建方法並在非活動中創建引用變量來從非活動中獲取資產文件夾文件。但它不工作從非活動訪問資產文件夾android
在活動代碼
public InputStream get_file(String file_path) throws IOException{
return this.getAssets().open(file_path);
}
在非活動代碼
HelperAcitivity ha = new HelperActivity();
InputStream br = ha.get_file("index.html");
如何使這項工作?從非活動性文件訪問資產內容。
傳遞活動場景,以非活性類使用相同的存在 – Raghunandan