从后台任务android中删除活动时,服务正在被销毁

时间:2016-09-29 14:26:38

标签: android android-service

我正在从我的mainActivity开始一个服务类:

Intent io = new Intent(MainActivity.this, Window.class);
startService(io);

它适用于大多数设备,但在一些lenovo设备中,当我从后台任务中移除我的应用时,服务也会被活动破坏。我已经尝试了Sticky service但它没有工作。这个问题的类型只出现在lenovo类似的设备上,在所有大多数其他设备上,服务不会被活动破坏,而且工作正常。任何人都可以帮我解决为什么会发生这种情况。

我也试过这种方式,但没有成功:

Intent io = new Intent(MainActivity.this, Window.class);
getBaseContext.startService(io);

我的宣言:

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity"
        android:launchMode="singleInstance">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

    <receiver android:name=".Boot" android:enabled="true" android:exported="false">
        <intent-filter>
            <action android:name="android.intent.action.BOOT_COMPLETED"/>
        </intent-filter>
    </receiver>

    <service
        android:name=".Capture"
        android:label="@string/service_name"
        android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
        <intent-filter>
            <action android:name="android.accessibilityservice.AccessibilityService" />
        </intent-filter>

        <meta-data
            android:name="android.access"
            android:resource="@xml/access" />
    </service>

    <activity android:name=".Faq"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
        android:launchMode="singleInstance"/>

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

    <activity android:name=".Intro1"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>
    <activity android:name=".Intro2"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>
    <activity android:name=".Intro3"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>
    <activity android:name=".Permit"
        android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>


</application>

3 个答案:

答案 0 :(得分:1)

也有这个问题。

大多数联想,小米,华硕等手机在固件中都有Security系统应用程序可以阻止服务。如果需要,您应该检查并解锁应用程序自动启动的阻止。

默认关闭。

即使您提供了必要的权限,某些BroadcastReceiver功能(如接收短信)也无法正常工作。

最糟糕的是,你无法以编程方式检查它。

答案 1 :(得分:0)

您可以在separate process中投放服务。将以下属性添加到AndroidManifest

中的服务声明中
android:process=":any-name-for-process"

答案 2 :(得分:0)

你可能想看看这个:

How to keep a service running in background even after user quits the app?

和developer.android.com:

在前台运行服务 前台服务是一种被认为是用户主动意识到的内容的服务,因此在内存不足时不会被系统杀死。前台服务必须提供状态栏的通知,该通知位于“正在进行”标题下,这意味着除非服务被停止或从前台删除,否则无法解除通知。

Notification notification = new Notification(R.drawable.icon, getText(R.string.ticker_text),
        System.currentTimeMillis());
Intent notificationIntent = new Intent(this, ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(this, getText(R.string.notification_title),
        getText(R.string.notification_message), pendingIntent);
startForeground(ONGOING_NOTIFICATION_ID, notification);

此外,您可以尝试添加到onDestroy()函数,这是一个警报,它会在销毁之后的几秒钟内重新启动服务。