gpt4 book ai didi

java - 没有 UI 的 Android 后台服务不响应

转载 作者:行者123 更新时间:2023-12-04 08:28:57 25 4
gpt4 key购买 nike

我尝试创建一个没有用户界面的后台服务,我用 BroadcastReceiver 创建了它。并在 list 文件中添加了我需要的东西。然后我配置Nothing如链接中所写。我正在 Android 模拟器上进行测试,当我执行我的应用程序时,什么也没有发生并且服务没有启动。我的问题在哪里?
这是我的 list

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.myapplication22">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyApplication22">

<service android:name=".MyService" />


<receiver
android:name=".StartReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>

</manifest>
这是我的广播接收器
override fun onReceive(context: Context, intent: Intent) {
Log.i("MYSERVICE","override fun onReceive(context: Context, intent: Intent)")
if (intent.action == Intent.ACTION_BOOT_COMPLETED ) {
Intent(context, MyService::class.java).also {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
context.startService(it)

return
}
context.startService(it)
}
}
}
这是我的服务
class MyService : Service() {

override fun onBind(intent: Intent): IBinder? {
return null
}

override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
if (intent != null) {
println("MYSERVICE STARTED AUTOMATICALLY")
}
return START_STICKY
}

override fun onCreate() {
super.onCreate()
println("MYSERVICE override fun onCreate() {")

}

override fun onDestroy() {
super.onDestroy()
println("MYSERVICE override fun onDestroy() {")

}
}

最佳答案

您的 Service仅在 BOOT_COMPLETED 时启动将收到操作,因此仅当应用程序已安装且系统重新启动时。当您仅通过 adb 安装应用程序时,它不会启动(因为您配置为在安装时启动 Nothing)
做一些 Activity fully transparentstartServiceonCreate紧接着 finish()称呼。包括 <activity list 中的声明,但没有任何 <intent-filter .然后在应用安装时选择“指定的 Activity ”并指向这个透明的 Activity ,而不是“无事可运行”,它开始 Service并在那之后退出。没有 intent-filter Activity在启动器中将不可见,启动它的唯一方法将是您在 AS 中的配置
当您将应用程序发送给最终用户时,请删除 <activity声明没有留下运行这个透明的实际方法Activity .只有Service然后可以启动,在当前情况下只有在系统启动时
顺便提一句。您的 Nothing链接假定您的应用程序将属于系统,移动到系统分区/文件夹。你有这样的特权吗? (在通常的用户设备上这是不可能的,你需要 root 权限)没有 <application 中的所有红色标记的行标签不起作用
编辑:
第1步:
创建文件 res/values/styles.xml和过去在下面或者如果存在已经在下面添加 <style标签

<resources>
<style name="Theme.Transparent" parent="android:Theme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:windowContentOverlay">@null</item>
<item name="android:windowNoTitle">true</item>
<item name="android:windowIsFloating">true</item>
<item name="android:backgroundDimEnabled">false</item>
</style>
</resources>
第 2 步:新建 Activity并以上述样式在 list 中声明
<activity android:name=".YourActivity" android:theme="@style/Theme.Transparent"/>
如果您在下方添加 <intent-filter<activity然后标记这个 Activity显示在系统用户界面(启动器)中,所以不要这样做,放在这里只是为了通知
// launcher icon declaration, not for OPs case
<intent-filter>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.intent.action.MAIN"/>
// MAIN must be placed with first LAUNCHER declaration
</intent-filter>
请注意,您还可以创建多个 <activity带有 LAUNCHER 的标签声明(第二个和更远的没有 MAIN 标签),使您的应用程序显示多个图标,每个 Activity 一个 LAUNCHER -declared(据我所知,您也可以更改其名称和图标)
第 3 步:内部 onCreate紧随其后 super.onCreate调用开始您的 Service然后退出这个隐形 Activity
startService(this, MyService.class); // will start service
finish(); // quits activity
第 4 步:在 Edit Configurations... 下而不是 Nothing 只是选择 Specified Activity

关于java - 没有 UI 的 Android 后台服务不响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65120715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com