powerpoint45
Member
I need to write text to backgroundcache.text in the folder sdcard/spinlauncher, but when I run the code it force closes and on log cat it says "failed binder transaction"
Any suggestions
Code:
try {
OutputStreamWriter cache = new OutputStreamWriter(openFileOutput("/sdcard/spinlauncher/backgroundcache.txt",MODE_APPEND));
cache.write("this is text");
cache.close();
cache.flush();
} catch (java.io.IOException e) {
}