Here you can find the source of sdCardIsMounted()
public static boolean sdCardIsMounted()
//package com.java2s; import android.os.Environment; public class Main { public static boolean sdCardIsMounted() { return Environment.MEDIA_MOUNTED.equals(Environment .getExternalStorageState()); }//from w w w .j av a2 s. c o m }