应用程序只有BroadcastReceiver无法正常工作

时间:2016-02-27 05:39:00

标签: android

我只有一个CallBroadcastReceiver,它扩展了BroadcastReceiver和它声明的清单。

当我拨打电话时,它还没有显示Toast。 你能帮忙吗?

显示

[2016-02-27 10:02:20 - OnlyReciever] No Launcher activity found!
[2016-02-27 10:02:20 - OnlyReciever] The launch will only sync the application package on the device!

以下代码 -

CallBroadcastReceiver.class

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

/**
 * @author Cosmos
 *
 */
public class CallBroadcastReceiver extends BroadcastReceiver 
{
    public CallBroadcastReceiver() {}

    @Override
    public void onReceive(Context context, Intent intent) 
    {
        Toast.makeText(context, intent.getAction(), Toast.LENGTH_LONG).show();
    }
}

的Manifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="ind.example.onlyreciever"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />

    <uses-sdk
        android:minSdkVersion="22"
        android:targetSdkVersion="22" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <receiver 
            android:name="ind.example.onlyreciever.CallBroadcastReceiver"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.intent.action.NEW_OUTGOING_CALL" />
            </intent-filter>
        </receiver>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:2)

适用于Android 3.1及更高版本,

您需要启动其中一项活动,以便在任何清单注册的BroadcastReceiver工作之前让您的应用程序退出停止状态,详见3.1 release notes

首次安装应用程序或手动强制关闭时,它处于&#34;停止状态&#34;。在此状态下,只有FLAG_INCLUDE_STOPPED_PACKAGES标志的广播意图才会到达您的广播接收器;此标志不包含在默认系统广播中,因此应用程序无法在停止状态下接收它们。

请注意&#34;停止状态&#34;由程序包管理器跟踪,与&#34;应用程序未运行&#34;不同。一旦应用程序处于停止状态,即使您重新启动设备且应用程序未运行,它仍会保持不变状态。