我目前有一个闹钟管理器和一个广播接收器,可以在每天的特定时间发送通知。目前,每次拨打电话时,通知都会激活,我相信这是来自收听电话状态变化的广播接收器,但我不知道如何停止听取电话状态的变化。以下是我的代码:
public class Alarm_Receiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (return_cow_id.isEmpty()){
}else{
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
new Intent(context, Cows_On_Heat.class), 0);
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Cow/s due back on heat today: ")
.setContentText(return_cow_id);
mBuilder.setContentIntent(contentIntent);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
mBuilder.setAutoCancel(true);
NotificationManager mNotificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, mBuilder.build());
}
if (calve_cow_id.isEmpty()){
}else{
PendingIntent contentIntent1 = PendingIntent.getActivity(context, 0,
new Intent(context, Cows_Calving.class), 0);
NotificationCompat.Builder mBuilder1 =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Cow/s due to calve in 7 days: ")
.setContentText(calve_cow_id);
mBuilder1.setContentIntent(contentIntent1);
mBuilder1.setDefaults(Notification.DEFAULT_SOUND);
mBuilder1.setAutoCancel(true);
NotificationManager mNotificationManager1 =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager1.notify(2, mBuilder1.build());
}
}
}
非常感谢任何帮助。
答案 0 :(得分:0)
请参阅此链接http://www.tutorialforandroid.com/2009/01/get-phone-state-when-someone-is-calling_22.html
使用该教程中的方法来侦听手机状态,并使用PhoneStateListener子类中的boolean变量来控制return_cow_id.isEmpty()& calve_cow_id.isEmpty()如果条件如此:
public class MyPhoneStateListener extends PhoneStateListener {
public void onCallStateChanged(int state,String incomingNumber){
switch(state){
case TelephonyManager.CALL_STATE_IDLE:
Log.d("DEBUG", "IDLE");
break;
case TelephonyManager.CALL_STATE_OFFHOOK:
Log.d("DEBUG", "OFFHOOK");
break;
case TelephonyManager.CALL_STATE_RINGING:
Log.d("DEBUG", "RINGING");
break;
}
phone_state_changed = true; //here is your phone state controller variable
}
}
那么你的接收器应该是这样的:
if (return_cow_id.isEmpty()){
}else{
if (!phone_state_changed){
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,
new Intent(context, Cows_On_Heat.class), 0);
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Cow/s due back on heat today: ")
.setContentText(return_cow_id);
mBuilder.setContentIntent(contentIntent);
mBuilder.setDefaults(Notification.DEFAULT_SOUND);
mBuilder.setAutoCancel(true);
NotificationManager mNotificationManager =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(1, mBuilder.build());
phone_state_changed = false; //now it will work as a toggler
}
}
if (calve_cow_id.isEmpty()){
}else{
if(!phone_state_changed){
PendingIntent contentIntent1 = PendingIntent.getActivity(context, 0,
new Intent(context, Cows_Calving.class), 0);
NotificationCompat.Builder mBuilder1 =
new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("Cow/s due to calve in 7 days: ")
.setContentText(calve_cow_id);
mBuilder1.setContentIntent(contentIntent1);
mBuilder1.setDefaults(Notification.DEFAULT_SOUND);
mBuilder1.setAutoCancel(true);
NotificationManager mNotificationManager1 =
(NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager1.notify(2, mBuilder1.build());
phone_state_changed = false; //now it will work as a toggler
}
}
}
希望我帮忙,如果我这样做,请考虑删除已接受的答案,如果没有,请不要犹豫。