我正在尝试在应用程序上创建。我需要检测我是否接到任何电话,然后获得号码,但这一切都应该在后台进行 后台工作是后半部分,但现在我正在尝试启动我的应用程序,但它正在崩溃 你能告诉我如何在后面调用broadcastreciver吗? 这是我的MainActivity.java
public class MainActivity extends Activity
{
@Override
public void onCreate(Bundle savedInstancestate)
{
super.onCreate(savedInstancestate);
setContentView(R.layout.activity_main);
}
public void broadcastIntent(View view)
{
Intent intent = new Intent();
intent.setAction("com.app.callrecord.MyBroadcastReceiver");
sendBroadcast(intent);
}
}
Broadcastreceiver.java
public class MyBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle = intent.getExtras();
if (bundle == null)
return;
String phoneNumber = null;
// Incoming call
String state = bundle.getString(TelephonyManager.EXTRA_STATE);
if ((state != null) && (state.equalsIgnoreCase(TelephonyManager.EXTRA_STATE_RINGING))) {
phoneNumber = bundle.getString(TelephonyManager.EXTRA_INCOMING_NUMBER);
// callToast(phoneNumber);
}
// Outgoing call
else if (state == null) {
Intent i = new Intent(context,RecordHistory.class);
intent.putExtra("phonenumber", phoneNumber);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
// Here: do something with the number
}
}
}
这是我的清单文件
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name="com.app.callrecord.MainActivity">
<intent-filter>
<action android:name="android.intent.action.PHONE_STATE"></action>
<action android:name="android.intent.action.NEW_OUTGOING_CALL"></action>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".RecordHistory"></activity>
</application>
这是我的异常日志
02-18 13:36:17.240: E/AndroidRuntime(9397): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.app.callrecord/com.app.callrecord.MyBroadCastReciever}: java.lang.ClassNotFoundException: com.app.callrecord.MyBroadCastReciever
02-18 13:36:17.240: E/AndroidRuntime(9397): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)
02-18 13:36:17.240: E/AndroidRuntime(9397): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2278)
02-18 13:36:17.240: E/AndroidRuntime(9397): at android.app.ActivityThread.access$600(ActivityThread.java:142)
02-18 13:36:17.240: E/AndroidRuntime(9397): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1280)
给我任何参考。
答案 0 :(得分:2)
你的清单上有错误。以下行错误地引用了该活动:
<receiver android:name="com.app.callrecord.MainActivity">
应该参考接收者:
<receiver android:name="SOME_PACKAGE_HERE.MyBroadcastReceiver">
编辑:
如果广播接收器未被呼叫,您可能无权检测来电和去电。您的清单中需要android.permission.READ_PHONE_STATE
和android.permission.PROCESS_OUTGOING_CALLS
权限。
答案 1 :(得分:1)
我认为问题在于您在清单中声明了名称错误。您已将其声明为
<receiver android:name="com.app.callrecord.MainActivity">
然而它应该是
<receiver android:name="com.app.callrecord.MyBroadCastReciever">