안드로이드 개발 질문/답변
(글 수 45,052)
거리를 확인해서 특정범위 이하가 되면 미디어 플레이어를 실행시키려고 합니다.
Intent intent = new Intent (this, c24.class);
mPending = PendingIntent.getBroadcast(this, 0, intent, 0);
public void onResume(){
super.onResume();
locationMgr.addProximityAlert(37.94, 127.81, 500, -1 , mPending);
}
public void onPause(){
super.onPause();
locationMgr.removeProximityAlert(mPending);
}
C24.java
public class C24 extends BroadcastReceiver{
public void onReceive(Contex context, Intent intent){
boolean bEnter = intent.getBooleanExtra( LocationManager.KEY_PROXIMITY_ENTERING, true);
}
}
이렇게 하면 bEnter 에 거리 500 미터 안에 들어가면 true 벗어나면 false 가 되는거 아닌가요????
이걸 이용해서 거리 안에 들어 가면 음악이 나오게 할수 없을까요???
제발제발 부탁 드립니다
제발 도와주세요~~~