Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは可能だと確信していますが、確認したいと思います。apk 内にあるファイルにアクセスする方法を知りたいです。ビルド時にファイルが apk に追加されますが、ファイルの場所 (相対パス) を指定する方法がわかりません。相対パスを指定しましたが、うまくいかないようです。
誰もこれを試しましたか?
ファイルが APK の「assets」フォルダーにある場合は、次のようにアクセスできます。
InputStream is = context.getAssets().open("FILENAME");
アセット フォルダーからの相対パスをFILENAME含むファイル名
FILENAME