Here you can find the source of isExtStorageReadable()
public static boolean isExtStorageReadable()
//package com.java2s; import android.os.Environment; public class Main { public static boolean isExtStorageReadable() { String state = Environment.getExternalStorageState(); if (Environment.MEDIA_MOUNTED.equals(state) || Environment.MEDIA_MOUNTED_READ_ONLY.equals(state)) { return true; }// w ww . ja v a 2 s . c o m return false; } }