public static String openAssetFile(Context ctx) {
BufferedReader br=new BufferedReader(new InputStreamReader(ctx.getResources().openRawResource(R.raw.hung)));
String readLine;
String sout="";
try {
while ((readLine = br.readLine()) != null) {
sout+=readLine;
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return sout;
}
это не работает, он зависает, мой XML-файл составляет около 300 КБ.
как я могу справиться с этим?