我正在学习如何在 Android 中使用服务。我正在开发一个应用程序来了解它们。当用户按下“开始”按钮时,应用程序将启动服务。该服务将一直运行,直到用户按下“停止”按钮(Alpify 等应用程序或类似应用程序)
在 AndroidManifest 中,我的服务声明如下:
<service
android:name="com.cpalosrejano.example.MyService"
android:stopWithTask="false"
android:enabled="true" />
从活动中,我按如下方式启动服务:
Intent service = new Intent(MyActivity.this, MyService.class);
startService(service);
然后我打开其他消耗大量 RAM 的应用程序(Clash Royale、Instagram、Facebook 等),我的服务被系统杀死。
我实现onTrimMemory(int level)
了方法来查看发生了什么。在我的服务被杀死之前,logcat 给了我以下信息:
onTrimMemory() : 5
onTrimMemory() : 10
onTrimMemory() : 15
我已经阅读了onTrimMemory()
方法的行为。文档说,当我收到该代码时,我必须释放未使用的对象。但是我的服务还没有代码。
我尝试了什么:
largeHeap="true"
在 AndroidManifest.xml 文件中设置- 开始服务
startForeground()
START_STICKY
服役中的旗帜- 获得一个
wakelock
我的服务代码:
public class MyService extends Service {
PowerManager.WakeLock mWakeLock;
@Override
public void onCreate() {
Log.i(ServiceBase.class.getSimpleName(), "onCreate() : Service Started.");
super.onCreate();
}
@Override
public final int onStartCommand(Intent intent, int flags, int startId) {
Log.i(ServiceBase.class.getSimpleName(), "onStarCommand() : Received id " + startId + ": " + intent);
// acquire wakelock
PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE);
mWakeLock = powerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, ServiceBase.class.getSimpleName());
mWakeLock.acquire();
// start foreground
NotificationCompat.Builder builder = new NotificationCompat.Builder(this);
builder.setSmallIcon(android.R.drawable.stat_sys_download);
builder.setContentText("Service in foreground");
builder.setContentTitle("My app");
builder.setOngoing(true);
Notification notification = builder.build();
startForeground(1359, notification);
// run until explicitly stopped.
return START_STICKY;
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
Log.i(ServiceBase.class.getSimpleName(), "onBind() : true");
return null;
}
@Override
public void onRebind(Intent intent) {
Log.i(ServiceBase.class.getSimpleName(), "onRebind() : true");
super.onRebind(intent);
}
@Override
public boolean onUnbind(Intent intent) {
Log.i(ServiceBase.class.getSimpleName(), "onUnbind() : false");
return super.onUnbind(intent);
}
@Override
public void onDestroy() {
Log.i(ServiceBase.class.getSimpleName(), "onDestroy()");
super.onDestroy();
}
@Override
public void onTaskRemoved(Intent rootIntent) {
Log.i(ServiceBase.class.getSimpleName(), "onTaskRemoved()");
super.onTaskRemoved(rootIntent);
}
@Override
public void onTrimMemory(int level) {
Log.i(ServiceBase.class.getSimpleName(), "onTrimMemory() : " + level);
super.onTrimMemory(level);
}
}
现在,我的问题:
怎么可能,当我的应用程序被系统杀死时,Runtastic 应用程序正在运行?