1

我正在开发一个应用程序,我想在从 Google Play 商店安装该应用程序后自动启动该应用程序。我对此进行了一些搜索,发现线程和答案表明无法完成。但我还在 Play 商店中找到了一个应用程序,即安装时自动启动,它非常有效地做到了这一点。任何人都可以建议我这背后的逻辑。任何帮助都感激不尽。

4

1 回答 1

2

您需要创建一个绑定到 BOOT_COMPLETED 操作的 BroadcastReceiver。

例子

    <manifest xmlns:android="http://schemas.android.com/apk/res/android" 
     package="com.alfray.timeriffic" ...> 
     <application ...> 
      <receiver android:name=".MyBroadcastReceiver"> 
        <intent-filter> 
         <action android:name="android.intent.action.BOOT_COMPLETED" /> 
        </intent-filter> 
      </receiver> 
  </application> 

   <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> 
   </manifest>

它可能会起作用。试试看

于 2012-11-02T06:36:37.660 回答