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