5

我正在开发一个响应来电的 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)
        {
        }
    }
  }
}
4

2 回答 2

5

我想我可能已经解决了这个问题 - 虽然我是开发甚至使用安卓手机的新手......

在我的华为手机中,我的设置中有一个“受保护的应用程序”选项——那些不会被杀死的应用程序。

我查看了一些朋友的安卓手机,但无法找到相同的设置 - 所以我可以说这是华为特有的功能,可以弥补电池电量不足的问题。

谁能确认这是华为特有的问题?

大卫

于 2015-02-08T02:25:34.697 回答
0

你可以尝试设置优先级。像这样:

<intent-filter android:priority="1000">
于 2015-02-07T03:45:29.690 回答