Does anyone know why some samsung phones stops reading files at around
10kb? And what a solution could be?
I am using this to open files right now which works on every other
phone:
FileInputStream fileIS = new FileInputStream(file);
BufferedReader in = new BufferedReader(new InputStreamReader(fileIS));
do {
st = in.readLine();
if (st != null) {
mEditText.append(st);
mEditText.append(String.valueOf(lf));
}
} while (st != null);
in.close();
Any suggestions?
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en