안드로이드 스튜디오 8일차


안드로이드 스튜디오 8일차

@Override public int onStartCommand(Intent intent, int flags, int startId) { Log.d(TAG, "onStartCommand호출"); if (intent != null){ String command = intent.getStringExtra("command"); if (command != null){ if (command.equals("start")); PrintThread thread = new PrintThread(); thread.start(); } } return super.onStartCommand(intent, flags, startId); }...

안드로이드 스튜디오 8일차 에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : 안드로이드 스튜디오 8일차