Android examples for App:External Storage
is External Storage Read Only
//package com.java2s; import android.os.Environment; public class Main { public static boolean isExternalStorageReadOnly() { String extStorageState = Environment.getExternalStorageState(); if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(extStorageState)) { return true; }//from w ww .j a v a 2 s . co m return false; } }