我正在使用BroadcastReceiver来执行与mount / unmount等sd卡事件相关的操作。
现在的情况是我的接收器无法正常工作。我的应用程序只有一个BroadcastReceiver没有GUI,没有Activity,没有布局。所以现在我想调试代码,所以我想在安装应用程序时打印一条消息。所以我正在寻找像服务和活动一样的onCreate()
方法。我在这里阅读了BroadcastReceiver的官方文档
http://developer.android.com/reference/android/content/BroadcastReceiver.html
我无法找到这样的方法。那我怎么知道我的android BroadcastReceiver是否已注册。无论我的android BroadcastReceiver是否已注册,我必须使用哪种方法来获取信息。有没有其他方法我可以得到infothat 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>
和扩展BroadcastReceiver的SDCardStateChangeListener.java
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");
}
}
}
答案 0 :(得分:2)
在这种情况下,您没有明确注册接收器,您在清单中声明,无需再次注册。将调用其清单具有匹配的接收器过滤器的所有组件(包服务跟踪这些东西)。在这种情况下,将实例化类SDCardStateChangeListener
的对象,并调用其onReceive()
方法。
您可以将断点或日志消息作为onRecieve()
方法中的第一个语句放置,以查看是否已调用它。
答案 1 :(得分:2)
如果您有android:exported="false"
,您将永远不会收到从您自己的应用外部发送的任何广播。