In my code alarm manger is not working.Rest of my application is working well.Please see my code.

   Intent myIntent = new Intent(getApplicationContext(), AndroidAlarmService.class);
   myIntent.putExtra("class", "home");
   PendingIntent pendingIntent = PendingIntent.getService(this, 0,myIntent, 0);
   AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);
   alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,System.currentTimeMillis(),6000,pendingIntent);

and my android AlarmService class:-

public class AndroidAlarmService extends BroadcastReceiver implements URLs{
 public void onReceive(Context context, Intent intent) {

    // TODO Auto-generated method stub
     System.out.println("BroadCast\n");
     String name=intent.getStringExtra("class");
     if(name.equals("home")){

    Intent homeIn=new Intent(context,Home.class);
    context.startActivity(homeIn);
     }

}
}

in manifest I have done this;

 <receiver android:name=".AndroidAlarmService" android:enabled="true" >
      <intent-filter>
          <action android:name="android.intent.action.PHONE_STATE"></action>
      </intent-filter>
 </receiver>

Why its not working??

link|improve this question

did you add permission in your manifest xml. It Requires the READ_PHONE_STATE permission. – Padma Kumar Dec 7 '11 at 12:24
yes above the application tag.... – freshDroid Dec 7 '11 at 12:25
It should not be above the application tag, but encapsulated in the tag.... Something like <application ..... <receiver put your data here></receiver></application> – THelper Dec 7 '11 at 13:08
still nothing happens.. – freshDroid Dec 7 '11 at 13:13
I noticed another problem. Check my answer below. – THelper Dec 7 '11 at 14:16
feedback

4 Answers

Have you tried changing the

alarmManager.setRepeating(AlarmManager.RTC_WAKEUP,System.currentTimeMillis(),6000,pendingIntent);

Have you tried changing the 6000 to something else? It seems like you have everything else correct.

EDIT:

Make sure you have the Read_phone_state permission in your manifest.

link|improve this answer
wht is the problem with 6000?? Does it mean 6 seconds?? – freshDroid Dec 7 '11 at 12:19
Check out my edit. – coder_For_Life22 Dec 7 '11 at 12:26
yes.i have above the applicaton tag – freshDroid Dec 7 '11 at 12:27
feedback

You just the ALARM_SERVICE in this line

AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);

write like this

AlarmManager alarmManager = (AlarmManager) getSystemService(Context.ALARM_SERVICE);

Edit:

checkout this blog http://www.tutorialforandroid.com/2009/01/get-phone-state-when-someone-is-calling_22.html hope you get some idea how to handle it and try without intent filter just simple

<receiver android:name=".AndroidAlarmService" />
link|improve this answer
it didn't work :-( – freshDroid Dec 7 '11 at 12:24
what you got the problem ?please clear more any error etc – Pratik Dec 7 '11 at 12:27
i don't have any error.. But it is not calling broadcastreciever.. – freshDroid Dec 7 '11 at 12:29
check updated post – Pratik Dec 7 '11 at 12:42
still not working:-( – freshDroid Dec 7 '11 at 13:00
feedback

I think the problem is that you are mixing code for two different mechanisms:

  1. PendingIntent.getBroadcast(): This broadcasts the alarm and requires a broadcast receiver in your manifest. Also the class specified in the manifest should extend BroadcastReceiver.

  2. PendingIntent.getService(): I have no experience with this one but as far as I understand the documentation you can use it to start a service. So my guess is that you can only use it for classes that extend IntentService. (Can someone confirm this?)

Also, 6000 does mean 6 seconds. Use 60000 for one minute.

link|improve this answer
feedback
up vote 0 down vote accepted

I got the answer.I made following changes:

Intent myIntent = new Intent(getApplicationContext(), AndroidAlarmService.class);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0,myIntent, 0);

In my AndroidAlarmService class:

Intent homeIn=new Intent(context,Home.class);
homeIn.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(homeIn);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.