我有三星Galaxy J7 Max,我正在编写一个简单的应用程序,在使用时返回到主屏幕。此应用程序假设在设备首次启动时启动,以及设备重新启动时。
即使我在虚拟设备上测试了应用程序并且具有适当的权限和适当的广播接收器,但上述情况都不会发生。
我还从阅读SO的答案和建议中添加了一些关于同样问题的调整。但他们都没有奏效。我不认为三星 它的应用程序。
以下是我正在使用的AndroidManifest.xml中的代码 - :
<receiver
android:name="foobar.alex.foobar.BootCompleted"
android:enabled="true"
android:exported="true"
android:permission="android.permission.RECEIVE_BOOT_COMPLETED">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.REBOOT"/>
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
</intent-filter>
</receiver>
另请注意我的手机是通过密码和指纹保护的,这会导致任何问题吗?