我正在尝试在应用程序上创建。我需要检测我是否接到任何电话然后获取号码,但这所有过程都应该在后台发生。
后台工作是后半部分,但现在我正在尝试启动我的应用程序,但它崩溃了。
你能告诉我如何在后台调用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);
}
}
广播接收器.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)
给我任何参考。