How to check if a SD Card has been inserted to the tablet or not : Android?

前端 未结 4 509
野的像风
野的像风 2020-12-17 04:29

I am working on a simple app, which should be able to access files from internal storage and as well as from external storage (Removable cards) like Micro SD cards (when an

4条回答
  •  佛祖请我去吃肉
    2020-12-17 05:20

    Try:

    Boolean mSDcheck = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
    

提交回复
热议问题