Here you can find the source of hasSdcard()
private static boolean hasSdcard()
//package com.java2s; import android.os.Environment; public class Main { private static boolean hasSdcard() { String status = Environment.getExternalStorageState(); if (status.equals(Environment.MEDIA_MOUNTED)) return true; else/*from w ww. j a v a2s . c o m*/ return false; } }