1

アプリケーションがパックされているときに.txtファイルをapkに入れたり、apkに入れres/drawableたりして、インストール後に開いて読み取っていくつかのタスクを実行することを考えています。res/layoutこれはできますか?はいの場合、ファイルのパスがわからないため、ファイルにアクセスする方法を教えてください。

4

1 に答える 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 に答える