//FISHING
package exam.location;
import android.app.*;
import android.content.*;
import android.location.*;
import android.os.*;

public class LocationAlert extends Activity {
 LocationManager mLocMan;
 PendingIntent mPending;
 public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.location_locationalert);

  mLocMan = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
  Intent intent = new Intent(this, FishingReceiver.class);
  mPending = PendingIntent.getBroadcast(this, 0, intent, 0);
 }

 public void onResume() {
  super.onResume();
  mLocMan.addProximityAlert(37.94, 127.81, 500, -1, mPending);
 } 

 public void onPause() {
  super.onPause();
  mLocMan.removeProximityAlert(mPending);
 }
}

FishingReceiver.java 파일은 간단한데 이게 DDMS를 37.94  127.81을 넣어도 토스트가 안나오네요
앞에 질문보니까 Action으로 매칭시키라고 한거 같은데 자세한 부가 설명좀 부탁드립니다!