我正在开发一个响应来电的 android 应用程序。我已经设置了一个广播接收器,在清单文件中设置了权限和意图过滤器,而且很多时候,它都可以工作。我可以杀死所有应用程序,重新启动手机,它仍然可以工作..
但是,有时它没有反应,并且在这种情况发生一次之后,它在重新启动后也没有反应。
我已经为此苦苦挣扎了大约一个月,这让我很生气。每次收到来电时,我真的需要我的应用程序做出响应。
我尝试删除所有代码,并在收到或结束呼叫时仅显示 Toast 消息。即使应用程序除此之外什么都不做,行为仍然相同。
我无法在模拟器上复制它,我正在使用我的HUAWEI ASCEND Y550进行设备测试。
非常感谢任何帮助,
大卫
显现:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.app.receivertest" >
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".CallReceiver" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
</manifest>
我的接收器:
public class CallReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
try {
if (context == null && intent == null)
return;
String state = intent.getStringExtra(TelephonyManager.EXTRA_STATE);
String action = intent.getAction();
Toast.makeText(context, action + " " + state, Toast.LENGTH_SHORT).show();
} catch (Exception ex) {
try {
Toast.makeText(context, "Error", Toast.LENGTH_SHORT).show();
}
catch (Exception e)
{
}
}
}
}