I have no SDcard in my Device but the following code return me true.
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
I have no SDcard in my Device but the following code return me true.
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
Please check this
boolean isSDCardmounted = false;
isSDCardmounted = Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)
if(isSDCardmounted ){
//Sd card available
}else{
//SD Card not available
}
Boolean isSDAvailable = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
if(isSDAvailable )
{
// yes SD-card is Available
}
else
{
// Not Find sd card
}