android.intent.action.MEDIA_MOUNTED广播无法收到的问题

 只需要增加一条语句就好,   ,无该语句,BroadcastReceiver将无法收SD卡插拔广播消息

 

 

     intent.action.MEDIA_MOUNTED"/>

     intent.action.MEDIA_EJECT" />

     

 

 

 

 

data元素XML定义(参见/reference/android/R.styleable.html#AndroidManifestData):

host

mimeType

path

pathPattern

pathPrefix

port

scheme,例如file,http,https等

-------------------------------以上是静态监听,动态监听也是一样,如下------------------------------------------
要在intentFilter中加上这名话。
intentFilter.addDataScheme("file");

你可能感兴趣的:(Android)