java – Android:如何检测“打开USB存储”广播?

前端之家收集整理的这篇文章主要介绍了java – Android:如何检测“打开USB存储”广播?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用BroadcastReceiver来检测打开USB存储设备,尽管我可以检测使用 android.intent.action.UMS_CONNECTED操作连接的USB

使用android.intent.action.UMS_DISCONNECTED操作断开连接.
如何检测USB存储?

解决方法

以下是如何检查存储卡是否已安装/卸载.您可以更改它以检查已删除/已留下.我通过注册一个BroadcastReceiver来获取“挂载事件”,然后检查存储卡的状态,如果没有安装,并且它不在检查(再次挂载卡时的状态),它将被卸载或该卡已被删除.
public class MemCardReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context,Intent intent) {
        if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
            onMemcardMounted();
        }
        else if (!Environment.getExternalStorageState().equals(Environment.MEDIA_CHECKING)){
            onMemorycardUnMounted();
        }
    }

    private void onMemorycardUnMounted() {}

    private void onMemcardMounted() {}
}

并在ManifestFile

<receiver android:enabled="true" android:exported="true" android:name="the.name"> 
        <intent-filter> 
            <action android:name="android.intent.action.MEDIA_MOUNTED" /> 
            <action android:name="android.intent.action.MEDIA_UNMOUNTED" />
            <data android:scheme="file" /> 
        </intent-filter> 
    </receiver>

有几个不同的状态checkout this如果还有其他的说法.去除

原文链接:https://www.f2er.com/android/125912.html

猜你在找的Android相关文章