ローカル パッケージ アセット ディレクトリにある gif 画像を読み取る方法を知っています。しかし、今は他のパッケージ アセットの他の gif 画像を読み取る必要があります。たとえば、アセット内の com.bbb.app gif を読み取るためのメイン APP com.aaa.app です。私は使用を知っています
try {
context = this.createPackageContext("com.bbb.app",
Context.CONTEXT_IGNORE_SECURITY);
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
AssetManager am = context.getResources().getAssets();
try {
InputStream is = am.open(fileName);
image = BitmapFactory.decodeStream(is);
is.close();
} catch (IOException e) {
e.printStackTrace();
}
jpg/pngを読みたいけどgifは読みたいFresco libを使ってます。誰でもそれを行う方法を知っていますか?