zoukankan      html  css  js  c++  java
  • 当SD卡拔出时,返回首页,栈中的activity都要清除,只留下首页的activity

    目标:当SD卡拔出时,返回首页,栈中的activity都要清楚,只留下首页的activity

    我在清单中注册了一个静态广播:

    <receiver android:name="com.panocean.kepler.application.UsbBroadCastReceiver" >
    <intent-filter android:priority="1000" >
    <action android:name="android.intent.action.MEDIA_MOUNTED" />
    <action android:name="android.intent.action.MEDIA_EJECT" />
    <data android:scheme="file" />
    </intent-filter>
    </receiver>

    public class UsbBroadCastReceiver extends BroadcastReceiver {
    public UsbBroadCastReceiver() {
    }

    @Override
    public void onReceive(Context context, Intent intent) {
    String action = intent.getAction();
    if (action.equals(Intent.ACTION_MEDIA_EJECT)) {
    Toast.makeText(context, "SD卡异常", Toast.LENGTH_LONG).show();
    Intent intent2 = new Intent(context, FileExplorerActivity.class);
    intent2.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
    | Intent.FLAG_ACTIVITY_CLEAR_TOP);
    context.startActivity(intent2);
    }
    }
    }

    当sd卡拔出时,系统发出广播,我注册的BroadCastReceiver会接收到这个广播,

    做出处理。intent设置flag,系统要求flag必须要有Intent.FLAG_ACTIVITY_NEW_TASK,

    否则会报错。Intent.FLAG_ACTIVITY_CLEAR_TOP清除栈中所有activity,重新绘制首页

    activity;

  • 相关阅读:
    ci框架与smarty的整合
    jQuery 1.3.2 简单实现select二级联动
    Nginx配置https
    tp5.1最新的类库使用规则
    Linux指令大全
    Redis锁机制处理高并发
    Nginx配置https站点
    vue的入门
    HTTP 请求头中的 X-Forwarded-For,X-Real-IP
    Composer包制作以及发布!
  • 原文地址:https://www.cnblogs.com/shenchanghui/p/4885898.html
Copyright © 2011-2022 走看看