アプリケーションがパックされているときに.txt
ファイルをapkに入れたり、apkに入れres/drawable
たりして、インストール後に開いて読み取っていくつかのタスクを実行することを考えています。res/layout
これはできますか?はいの場合、ファイルのパスがわからないため、ファイルにアクセスする方法を教えてください。
1 に答える
5
A .txt file is neither a drawable nor a layout. You should put it in res/raw. You can get access to it like:
Resources resources = this.getResources();
InputStream is = resources.openRawResource(R.raw.yourtextfile);
Try/catch and errorhandling omited in above code.
于 2010-04-20T11:36:13.310 に答える