为什么在Android Oreo上关闭屏幕后前台服务会停止?

时间:2019-05-07 12:41:26

标签: android android-8.0-oreo foreground-service huawei screen-off

当我关闭屏幕时,Android Oreo停止了我的前台服务。拔出设备时会发生这种情况。我在华为MediaPad T5上测试了我的应用程序。我每30秒使用Handler.postDelayed发送测试请求。

我了解了Android 8中的后台执行限制。在编写迁移指南时,该前台服务应该可以工作。我不能使用JobScheduler,JobIntenService或WorkManager,因为它们只能每15分钟重复一次。

我无法使用Firebase Cloud Messaging,因为我的应用程序离线完成部分工作。

我也使用绑定服务,因为它不应有背景限制。不幸的是,我的应用仍然无法正常工作。

我尝试使用WakeLock,将服务提供给另一个进程AlarmManager,将我的应用添加到白名单中,但仍然无法正常工作。

我通过简单的帖子要求在后台运行。我通过翻新库连接到测试服务器。

MainActivity

private LocalService mService;
private boolean mBound = false;
private Intent mIntent;

private ServiceConnection connection = new ServiceConnection() {

    @Override
    public void onServiceConnected(ComponentName className, IBinder service) {
        LocalService.LocalBinder binder = (LocalService.LocalBinder) service;
        mService = binder.getService();
        mBound = true;
    }

    @Override
    public void onServiceDisconnected(ComponentName arg0) {
        mBound = false;
        mService = null;
    }

};

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mIntent = new Intent(this, LocalService.class);
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        ContextCompat.startForegroundService(getApplicationContext(), mIntent);
    }
    PowerManager pm = (PowerManager) getApplicationContext().getSystemService(Context.POWER_SERVICE);
    cpuLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "kb:wl");
}

@Override
protected void onStart() {
    super.onStart();
    Intent intent = new Intent(this, LocalService.class);
    bindService(intent, connection, Context.BIND_AUTO_CREATE);
}

@Override
protected void onStop() {
    super.onStop();
    cpuLock.acquire();
}


public void onButtonClick(View v) {
    if (mBound) {
        bindService(mIntent, connection, BIND_AUTO_CREATE);
        mService.send();
    }
}

@Override
protected void onRestart() {
    super.onRestart();
    cpuLock.release();
}

LocalService类

public class LocalService extends Service {

    private IBinder mBinder = new LocalBinder();

    Handler mHandler;
    String DEBUG_TAG = "local";

    public class LocalBinder extends Binder {
        LocalService getService() {
            return LocalService.this;
        }
    }

    public int onStartCommand(Intent intent, int flags, int startId) {
        return START_STICKY;
    }

    @Override
    public void onCreate() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
            NotificationManager notificationManager =
                    (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

            String channelId = "some_channel_id";
            CharSequence channelName = "Channel La Manche";
            int importance = NotificationManager.IMPORTANCE_HIGH;
            NotificationChannel notificationChannel = new NotificationChannel(channelId, channelName, importance);
            notificationManager.createNotificationChannel(notificationChannel);

            Intent notificationIntent = new Intent(this, MainActivity.class);
            PendingIntent pendingIntent =
                    PendingIntent.getActivity(this, 0, notificationIntent, 0);

            Notification notification =
                    new Notification.Builder(this, channelId)
                            .setContentTitle("post title")
                            .setContentText("post text")
                            .setSmallIcon(R.drawable.ic_launcher_foreground)
                            .setContentIntent(pendingIntent)
                            .setTicker("post ticker")
                            .setOngoing(true)
                            .build();

            startForeground(1, notification);
        }
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        mHandler = new Handler();
        return mBinder;
    }

    public void send() {
        mHandler.postDelayed(test, 1000);
    }

    private Runnable test = new Runnable() {

        public void run() {
            Retrofit retrofit = new Retrofit.Builder()
                    .addConverterFactory(ScalarsConverterFactory.create())
                    .baseUrl("https://test.server.url/")
                    .build();
            Post servicePost = retrofit.create(Post.class);
            Call<String> request = servicePost.send("");
            request.enqueue(new Callback<String>() {

                @Override
                public void onResponse(@NonNull Call<String> call, @NonNull Response<String> response) {
                    Log.i(DEBUG_TAG, "Code " + response.code());
                }

                @Override
                public void onFailure(@NonNull Call<String> call, @NonNull Throwable t) {
                    Log.i(DEBUG_TAG, "Not connected to server. " + t.getMessage());
                }

            });

            mHandler.postDelayed(test, 30 * 1000);
        }

    };

发布界面

@Headers("Content-Type: application/json" )
@POST("api/test")
Call<String> send(@Body String empty);

当平板电脑正在充电或未充电且屏幕打开时,应用程序运行完美。即使屏幕关闭,Endomondo也能正常工作。我怎么了?

1 个答案:

答案 0 :(得分:0)

您可以在this repository的帮助下解决您的问题。该存储库用于定位,但是我相信它将为您带来很大帮助。