ServiceCaller.java 618 Bytes
package com.flexydial.app;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.widget.Toast;
public class ServiceCaller extends BroadcastReceiver
{
    @Override
    public void onReceive(Context arg0, Intent arg1)
        {
            // TODO Auto-generated method stub
            arg0.stopService(new Intent(arg0,CallRecordingService.class));
            Intent intent=new Intent(arg0, CallRecordingService.class);
            arg0.startService(intent);
            Toast.makeText(arg0, "Service Started", Toast.LENGTH_SHORT).show();
        }

}