I have an app with huge data pre-stored in the SD Card.
We are supporting all tablets ICS onwards. I am not able to find a way to access the SDCard
Its simple.
String f = Environment.getExternalStorageDirectory().getAbsolutePath(); Log.v("TAG",f);//to print the path of sdcard
if you want to access a file then.
String f = Environment.getExternalStorageDirectory()+"/file.ext"; Log.v("TAG",f);//to print the path of file in Logcat.