首页 > 其他 > 详细

监听SD卡状态

时间:2017-02-13 14:01:49      阅读:262      评论:0      收藏:0      [点我收藏+]

第一步,创建一个广播接收者,

 SDReceiver   extends BroadcastReceiver ; 
第二步,在AndroidManifest.xml配置文件中注册广播接收者与配置监SD卡状态发生变化时对应的Action:
  <receiver android:name="com.itheima.sdlistener.SDReceiver">
            <intent-filter >
                <action android:name="android.intent.action.MEDIA_MOUNTED"/>
                <action android:name="android.intent.action.MEDIA_REMOVED"/>
                <action android:name="android.intent.action.MEDIA_UNMOUNTED"/>
                <data android:scheme="file"/>
            </intent-filter>
 </receiver>
第三步,重写广播接受者中OnReceiver方法:
public void onReceive(Context context, Intent intent) {
     
//判断收到的是神马广播
//获取广播中的action
String action = intent.getAction();
 
if(Intent.ACTION_MEDIA_MOUNTED.equals(action)){
Toast.makeText(context, "sd卡就绪", 0).show();
}
else if(Intent.ACTION_MEDIA_REMOVED.equals(action)){
Toast.makeText(context, "sd卡被拔出了", 0).show();
}
else if(Intent.ACTION_MEDIA_UNMOUNTED.equals(action)){
Toast.makeText(context, "sd卡被卸载了", 0).show();
}
 }

监听SD卡状态

原文:http://www.cnblogs.com/SoulCode/p/6393370.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!