|
@@ -6,6 +6,7 @@ import android.content.Intent
|
6
|
6
|
import com.xhly.corelib.Const
|
7
|
7
|
import com.xhly.corelib.eventbus.UIEvent
|
8
|
8
|
import com.xhly.corelib.utils.LogShow
|
|
9
|
+import com.xhly.corelib.utils.SystemUtil
|
9
|
10
|
|
10
|
11
|
class SDReceiver: BroadcastReceiver() {
|
11
|
12
|
companion object{
|
|
@@ -21,7 +22,7 @@ class SDReceiver: BroadcastReceiver() {
|
21
|
22
|
Intent.ACTION_MEDIA_MOUNTED->
|
22
|
23
|
{
|
23
|
24
|
//SD卡挂载成功,可能会发送两次
|
24
|
|
- if (installLastTime==0L||(System.currentTimeMillis()- installLastTime>1000)){
|
|
25
|
+ if (installLastTime==0L||(System.currentTimeMillis()- installLastTime>1000)&&SystemUtil.isSDCardMounted(context)){
|
25
|
26
|
installLastTime=System.currentTimeMillis()
|
26
|
27
|
LogShow("sd卡已插入")
|
27
|
28
|
UIEvent(Const.SDINSTALL).post()
|