Reading and Writing a file from SD card

强颜欢笑 提交于 2019-12-01 18:42:48

i think its permissions issue add both of these to Manifest file

<uses-permission android:name="android.permisson.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

let me know how it turns out

Its seems you have the correct permissions but you're missing the clossing manifest tag:

</manifest>

Maybe a typo when you pasted the code here but still.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!