下面的代码显示 MediaScanner 已在 sdcard 上启动,它弹出后为什么?发生了什么?
if(intent.getDataString().equals("file:///mnt/extsd"))
{
if(Intent.ACTION_MEDIA_SCANNER_STARTED.equals(intent.getAction()))
{
//Media scanner is started
}
else if(Intent.ACTION_MEDIA_SCANNER_FINISHED.equals(intent.getAction()))
{
}
}