偵測是否有可用的 SD卡

1 篇文章 / 0 new
author
偵測是否有可用的 SD卡
private boolean checkSDCard() {
    if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
        return true;
    else
        return false;
}
Free Web Hosting