I have 2 activity classes and a class extending broadcast receiver. Using activity1 i launch the app, set the alarm which will begin after 10 secs and i am closing the app.

after 10 secs the app is launched and the control is transferred to broadcast receiver where i call the next activty which will show an alarm icon and text, after this i start the alarm with vibration in the class that extends broadcast receiver.

everything works fine till here.

I have a stop button in activity 2. My intention is to to stop the alarm sound(player) and vibration once i click the button. I get exception on clicking the button and the alarm and vibration dont seem to stop till the force close it from application management.

Could anyone help me out with this.

My code:

Activity1:

package com.alarm;

    import java.util.Calendar;
    import android.app.Activity;
    import android.app.AlarmManager;
    import android.app.PendingIntent;
    import android.content.Intent;
    import android.os.Bundle;
    import android.widget.TextView;

    public class AlarmSampleActivity extends Activity {

        private TextView text = null;
        @Override
        public void onCreate(Bundle savedInstanceState) {

            super.onCreate(savedInstanceState);
            setContentView(R.layout.main);

            text = (TextView)findViewById(R.id.text);
            System.out.println("Alarm activity");

            Intent intent = new Intent(AlarmSampleActivity.this, AlarmReceiver.class);
            PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0);

            Calendar cal = Calendar.getInstance();
            cal.setTimeInMillis(System.currentTimeMillis());
            cal.add(Calendar.SECOND, 10);

            AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
            am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sender);
            finish();
            System.out.println("EXIT");
        }
    }

Broadcast receiver class:

package com.alarm;

import java.io.IOException;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.media.AudioManager;
import android.media.MediaPlayer;
import android.media.RingtoneManager;
import android.net.Uri;
import android.os.Vibrator;

public class AlarmReceiver extends BroadcastReceiver{

    private MediaPlayer player = null;
    private Context context = null;
    private Vibrator vibrate = null;

    @Override
    public void onReceive(Context con, Intent arg1) {

        context = con;
        System.out.println("Receiver");
        try{

            Intent intent = new Intent(context, ActivityClass.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            context.startActivity(intent);
            startPlayer();
            vibrate();
        }catch (Exception e) {


        }
    System.out.println("Calling next screen"+context);
    /*Intent intent = new Intent(context, ActivityClass.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    context.startActivity(intent);*/
    }

    private void vibrate() throws Exception{

         vibrate = (Vibrator)context.getSystemService(Context.VIBRATOR_SERVICE);
            int dot = 200;      // Length of a Morse Code "dot" in milliseconds
            int dash = 500;     // Length of a Morse Code "dash" in milliseconds
            int short_gap = 200;    // Length of Gap Between dots/dashes
            int medium_gap = 500;   // Length of Gap Between Letters
            int long_gap = 1000;    // Length of Gap Between Words
            long[] pattern = {
                0,  // Start immediately
                dot, short_gap, dot, short_gap, dot,    // s
                medium_gap,
                dash, short_gap, dash, short_gap, dash, // o
                medium_gap,
                dot, short_gap, dot, short_gap, dot,    // s
                long_gap
            };

            // Only perform this pattern one time (-1 means "do not repeat")
            vibrate.vibrate(pattern, 3);
             /*for (int i = 0; i < 30; i++) {

                 Thread.sleep(500);
            }
             vibrate.cancel();*/
    }

    private void startPlayer() throws Exception{

        new Thread(){

            public void run(){

                Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM);
                 if(uri == null){
                     // alert is null, using backup
                     uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
                     if(uri == null){  // I can't see this ever being null (as always have a default notification) but just incase
                         // alert backup is null, using 2nd backup
                         uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);               
                     }
                 }

                player = new MediaPlayer();
                try {

                    player.setDataSource(AlarmReceiver.this.context, uri);
                    final AudioManager audioManager = (AudioManager)context.getSystemService(Context.AUDIO_SERVICE);
                     if (audioManager.getStreamVolume(AudioManager.STREAM_ALARM) != 0) {
                         player.setAudioStreamType(AudioManager.STREAM_ALARM);
                         player.setLooping(true);
                         player.prepare();
                         player.start();
                        /* for (int i = 0; i < 30; i++) {

                             Thread.sleep(500);
                        }
                         player.stop();*/
                      }
                } catch (IllegalArgumentException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (SecurityException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IllegalStateException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } catch (IOException e) {
                    // TODO Auto-generated catch block
                    e.printStackTrace();
                } 
            }
        }.start();
    }

    public void stopVibrationAndPlayer(){

        vibrate.cancel();
        player.stop();
    }
}

Activity 2:

package com.alarm;

import java.util.Calendar;

import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;
import android.widget.TextView;

public class AlarmSampleActivity extends Activity {

    private TextView text = null;
    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        text = (TextView)findViewById(R.id.text);
        System.out.println("Alarm activity");

        Intent intent = new Intent(AlarmSampleActivity.this, AlarmReceiver.class);
        PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0);

        Calendar cal = Calendar.getInstance();
        cal.setTimeInMillis(System.currentTimeMillis());
        cal.add(Calendar.SECOND, 10);

        AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);
        am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sender);
        finish();
        System.out.println("EXIT");
    }
}   
link|improve this question

0% accept rate
feedback

1 Answer

use the stop button:

Button stopAlarm = (Button) findViewById(R.id.stopAlarm);
 stopAlarm.setOnTouchListener(new OnTouchListener() {
                 public boolean onTouch(View arg0, MotionEvent arg1) {
                     mMediaPlayer.stop();
                     finish();
                     return true;
                }
             } );
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.