1

I have followed the tutorial here : http://blog.sptechnolab.com/2011/09/14/android/starting-an-android-service-after-boot/

about creating a service, which is activating after boot of Android. Anyway It practically never started. I found in here : How to start a Service when .apk is Installed for the first time that it is not anymore possible since Android 3.0+.

My question is :

  • How to start a boot service once installed ?
4

2 に答える 2

1

しかし、視覚的な要素がないため、サービスを手動で開始するにはどうすればよいですか?

アクティビティの形で「視覚的要素」を追加します。

とにかく、次のアクティビティが必要です。

  • このサービスの動作を管理するための設定
  • サポートを受けるためのヘルプと手順
  • ライセンス契約

だから、活動を書いてください。BroadcastReceiversユーザーがアクティビティを開始すると、レシーバーなどのマニフェストに登録さBOOT_COMPLETEDれたものがAndroid3.1以降のデバイスで再び機能します。

于 2013-02-24T01:49:58.913 に答える
1

In lates android versions you can launch on boot only when user manually started application.

于 2013-02-23T23:15:37.087 に答える