如果这是一个愚蠢的问题请不要投票,请在这里分享一些亮点
我想创建一个用于保存通话记录的应用
因为我跟着 http://karanbalkar.com/2014/02/detect-incoming-call-and-call-hangup-event-in-android/
这个网站 但是当应用程序没有运行时我没有收到该事件。请帮助
即使应用程序关闭,我也希望收到来电时
清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sars.broadcasttest">
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".Main">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".IncommingCall">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
</receiver>
</application>
</manifest>
类文件
package com.sars.broadcasttest;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.Toast;
/**
* Created by athulbabu on 18/08/15.
*/
public class IncommingCall extends BroadcastReceiver {
int i=0;
@Override
public void onReceive(Context context, Intent intent) {
Log.d("IncomingCall", "Call catched test"+i++);
Toast.makeText(context, "Calll Intent Detected. test", Toast.LENGTH_LONG).show();
}
}
答案 0 :(得分:2)
出于安全原因,您必须在安装后至少运行一次app才能使BroadcastReceiver正常工作。
阅读本节:启动已停止应用程序的控件 http://developer.android.com/about/versions/android-3.1.html