首先,距我完成任何Android开发已经有一段时间了,无论如何我都不是专家。但是我想做的是,我以前做过,而且效果很好;但是,据我了解,Android更新可能已经改变了我需要做的事情。解决我的问题。
我正在做一个需要与远程服务器定期通信的项目。在某些情况下,工作是排定的,有时它会对电话上的某些事件做出反应。简而言之,我需要一个不打扰用户的后台服务,并在必要时提供通知。我已经写了一项服务,据我所知,我已经研究了互联网,并将其与以前做过的事情进行了比较,但我仍然遇到同样的问题。无论如何,我将所有内容分解为最简单的服务,但问题仍然存在。
我的Note 9设备运行的是Android 8.1.0;但是,我需要广泛的兼容性。我只是在尝试使用此设备进行测试,同时努力记住兼容性。但是我什至无法使用基本功能。
我从服务中插入了一些代码,使手机每隔一段时间响一次。为了简单起见,我删除了它,以确保这不是引起问题的原因。当我从应用程序/活动执行服务时,一切正常,服务继续执行。当我退出应用程序/活动时,服务会继续。
当我重新启动手机时,该服务将按预期执行。在大约一分钟的时间内,我收到以下通知。为什么?我究竟做错了什么?我需要适应哪些变化?
以下是我的代码。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="internalOnly"
package="com.example.exampleservice">
<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/AppTheme">
<receiver
android:name="com.example.exampleservice.BootReceiver">
<intent-filter android:priority="0">
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:name=".MyService" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
private Button buttonStart;
private Button buttonStop;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
buttonStart = (Button) findViewById(R.id.buttonStart);
buttonStop = (Button) findViewById(R.id.buttonStop);
buttonStart.setOnClickListener(this);
buttonStop.setOnClickListener(this);
}
@Override
public void onClick(View view) {
if (view == buttonStart) {
startService(new Intent(this, MyService.class));
} else if (view == buttonStop) {
stopService(new Intent(this, MyService.class));
}
}
}
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent)
{ if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
Intent serviceIntent = new Intent(context, MyService.class);
context.startService(serviceIntent);
}
}
}
public class MyService extends Service {
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onRebind(Intent intent) {
}
@Override
public boolean onUnbind(Intent intent) {
return true;
}
@Override
public void onDestroy() {
super.onDestroy();
}
}