AppResourceクラスの全ソースコードです。
package <パッケージ名>; import java.io.IOException; import java.io.InputStream; import android.content.Context; // アプリケーションリソース public class AppResource { // コンストラクタ public AppResource( Context context ) { m_Context = context; } // 読み込み public InputStream Load( String filePath ) { InputStream inputStream = null; try { inputStream = m_Context.getAssets().open( filePath ); } catch( IOException e ) { e.printStackTrace(); return null; } return inputStream; } // ファイル列挙 public String[] EnumFiles( String basePath ) { try { return m_Context.getAssets().list( basePath ); } catch( IOException e ) { e.printStackTrace(); } return null; } private Context m_Context; }