Auto2 Android 디바이스 기기 부팅 시 자동으로 앱이 실행되게 하기. 디바이스가 재부팅 할 때 자동으로 해당 앱이 실행되게 만들어보겠습니다. 우선 메니페스트에서 퍼미션하나 넣어줄게요. 그리고 브로드케스트 리시버를 상속받는 클래스 하나를 만들게요. import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class AutoStart extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if(action.equals("android.intent.action.B.. 2020. 5. 21. 안드로이드 스튜디오 자동으로 import Editor를 클릭해줍니다. Auto import를 클릭하시고 화면에 보이는바와 같이 Add unambiguous imports on the fly를 클릭해줍니다. 하시고 Apply를 눌러주시면 끝입니다. 이제 왼만한 import문들은 자동으로 이뤄집니다. 궁금하신 사항은 댓글 남겨주세요. 2019. 12. 23. 이전 1 다음