我正在使用 BroadcastReceiver 来执行与挂载/卸载等 sd 卡事件相关的操作。
现在的情况是我的接收器不工作。我的应用程序只有一个 BroadcastReceiver,没有 GUI,没有 Activity,没有布局。所以现在我想调试代码,所以我想在安装应用程序时打印一条消息。因此,我正在寻找一种方法,例如onCreate()
Service 和 Activity 具有的方法。我已经阅读了BroadcastReceiver的官方文档here
http://developer.android.com/reference/android/content/BroadcastReceiver.html
我找不到这样的方法。那么我怎么知道我的android BroadcastReceiver 是否已注册。我必须使用哪种方法来获取我的 android BroadcastReceiver 是否已注册的信息。有没有其他方法可以获取 mu 接收器已注册并且在帐篷中无法正常工作的信息。
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.broadcastreceiversdcardinsertionremoval"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver
android:name="SDCardStateChangeListener"
android:enabled="true"
android:exported="false" >
<intent-filter>
<action android:name="android.intent.action.MEDIA_UNMOUNTED" />
<action android:name="android.intent.action.MEDIA_REMOVED" />
<action android:name="android.intent.action.MEDIA_EJECT" />
<action android:name="android.intent.action.MEDIA_BAD_REMOVAL" />
<data android:scheme="file" />
</intent-filter>
</receiver>
</application>
</manifest>
和我的 SDCardStateChangeListener.java,它扩展了 BroadcastReceiver
package com.example.broadcastreceiversdcardinsertionremoval;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
public class SDCardStateChangeListener extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (action.equalsIgnoreCase(Intent.ACTION_MEDIA_REMOVED)
|| action.equalsIgnoreCase(Intent.ACTION_MEDIA_UNMOUNTED)
|| action.equalsIgnoreCase(Intent.ACTION_MEDIA_BAD_REMOVAL)
|| action.equalsIgnoreCase(Intent.ACTION_MEDIA_EJECT)) {
Log.d("action", "Sd Card Event");
}
}
}