시작시 앱을 어떻게 시작합니까?
이 링크 에서 샘플 코드를 사용해 보았지만 구식이며 작동하지 않습니다. Android 부팅이 완료되면 앱에서 자동으로 시작하도록 변경해야 할 사항과 파일을 변경해야합니까?
먼저, 당신은 당신의 권한이 필요합니다 AndroidManifest.xml
:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
또한에서 AndroidManifest.xml
서비스를 정의하고 BOOT_COMPLETED 작업을 수신하십시오 .
<service android:name=".MyService" android:label="My Service">
<intent-filter>
<action android:name="com.myapp.MyService" />
</intent-filter>
</service>
<receiver
android:name=".receiver.StartMyServiceAtBootReceiver"
android:label="StartMyServiceAtBootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
그런 다음 BOOT_COMPLETED 조치를 가져 오고 서비스를 시작할 수신자를 정의 해야합니다.
public class StartMyServiceAtBootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) {
Intent serviceIntent = new Intent(context, MyService.class);
context.startService(serviceIntent);
}
}
}
이제 전화가 시작될 때 서비스가 실행되고 있어야합니다.
이것은 안드로이드 장치 재부팅 후 활동을 시작하는 방법입니다 .
당신이 코드를 삽입 AndroidManifest.xml
내 파일 <application>
요소 ( 하지 내 <activity>
요소) :
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<receiver
android:enabled="true"
android:exported="true"
android:name="yourpackage.yourActivityRunOnStartup"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
그런 다음 매니페스트 의 요소에 지정된 것과 yourActivityRunOnStartup
일치 하는 새 클래스를 만듭니다 .android:name
<receiver>
package yourpackage;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
public class yourActivityRunOnStartup extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
Intent i = new Intent(context, MainActivity.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
}
참고 : i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
활동은 활동 외부의 컨텍스트에서 시작되므로 호출 이 중요합니다. 이것이 없으면 활동이 시작되지 않습니다.
또한, 값 android:enabled
, android:exported
및 android:permission
의 <receiver>
태그는 필수 보이지 않는다. 앱은 이러한 값없이 이벤트를받습니다. 여기 의 예를 참조 하십시오 .
ACTION_BOOT_COMPLETE 의 소리를 듣고 거기서 필요한 것을 수행하십시오. 여기에 코드 스 니펫이 있습니다.
최신 정보:
답변에 대한 원래 링크가 다운되었으므로 주석을 기반으로 링크가 다운되었을 때 아무도 코드를 놓치지 않기 때문에 링크 된 코드입니다.
AndroidManifest.xml (application-part)에서 :
<receiver android:enabled="true" android:name=".BootUpReceiver"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
...
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
...
public class BootUpReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, MyActivity.class); //MyActivity can be anything which you want to start on bootup...
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}
}
또한 코드를 수정하지 않으려는 경우 자동 시작과 같은 응용 프로그램을 사용하여 시작할 때 Android 응용 프로그램을 시작할 수 있습니다. 자동 시작 -루트 없음
Sean의 솔루션이 처음에는 저에게 효과적이지 않았습니다 (Android 4.2.2). 동일한 Android 프로젝트에 더미 활동을 추가하고 최소한 한 번은 장치에서 활동을 수동으로 실행해야했습니다. 그런 다음 Sean의 솔루션이 작동하기 시작했으며 이후 재부팅 후 BroadcastReceiver에 알 렸습니다.
다른 접근 방식은 부팅 과정에서 속도 저하를 피하기 위해 android.intent.action.USER_PRESENT
대신에 사용하는 것입니다 android.intent.action.BOOT_COMPLETED
. 그러나 이것은 true
사용자가 잠금 화면을 활성화 한 경우 에만 해당 됩니다. 그렇지 않으면이 의도가 브로드 캐스트되지 않습니다.
참조 블로그 -Android ACTION_USER_PRESENT 의도의 문제
이 질문에 며칠 동안 직면 한 점을 추가하고 싶습니다. 나는 모든 대답을 시도했지만 그게 효과가 없었습니다. Android 버전 5.1을 사용중인 경우이 설정을 변경하십시오.
Android 버전 5.1을 사용하는 경우 앱 설정에서 (시작 제한)을 선택 해제해야합니다.
설정> 앱> 앱> 실행 제한 (선택 해제)
참고 URL : https://stackoverflow.com/questions/6391902/how-do-i-start-my-app-on-startup
'IT story' 카테고리의 다른 글
Bash를 사용하여 파일에 특정 문자열이 포함되어 있는지 확인하는 방법 (0) | 2020.04.20 |
---|---|
Android에서 프로그래밍 방식으로 전면 플래시를 켜는 방법은 무엇입니까? (0) | 2020.04.20 |
파이썬에서 UTF-8로 UTF-8 디코딩 (0) | 2020.04.20 |
Xcode / iOS : DEBUG / RELEASE 빌드에서 코드가 실행 중인지 확인하는 방법은 무엇입니까? (0) | 2020.04.20 |
HTML 이메일 렌더링 테스트 (0) | 2020.04.20 |