在 Android Activity 中启动服务,但没有任何反应



MainActivity.java

package com.mxyue.www.testdemo;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Log.i("DemoLog", "beforetest startService");
Intent intent1 = new Intent(MainActivity.this, TestService.class);
startService(intent1);
//stop Service
Intent intent4 = new Intent(this,TestService.class);
stopService(intent4);
//restart Service
Intent intent5 = new Intent(this,TestService.class);
startService(intent5);
Log.i("DemoLog", "aftertest startService");
}
}

测试服务.java

package com.mxyue.www.testdemo;
/**
* Created by mxyue on 2017/8/13.
*/
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class TestService extends Service{

@Override
public void onCreate(){
Log.i("DemoLog","TestService -> onCreate, Thread ID:"+Thread.currentThread().getId());
super.onCreate();
}

@Override
public int onStartCommand(Intent intent,int flags,int startId){
Log.i("DemoLog","TestService -> onStartCommand, startId: "+startId+",Thread ID: "+Thread.currentThread().getId());
return START_STICKY;
}

@Override
public IBinder onBind(Intent intent){
Log.i("DemoLog","TestService -> onBind, Thread ID: "+Thread.currentThread().getId());
return null;
}

@Override
public void onDestroy(){
Log.i("DemoLog","TestService -> onDestroy, Thread ID: "+Thread.currentThread().getId());
super.onDestroy();
}
}

安卓清单.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mxyue.www.testdemo">
<application>
...
</application>
<service android:name="com.mxyue.www.testdemo.TestService"></service>
</manifest>

未调用 onStart命令,没有错误日志

一些日志

  • 08-13 05:51:34.935 2885-2885/?W/System:ClassLoader 引用的未知路径:/data/app/com.mxyue.www.testdemo-1/lib/x86
  • 08-13 05:51:34.937 2885-2885/?I/即时运行:启动即时运行服务器:是主进程
  • 08-13 05:51:34.982 2885-2885/?W/art:在Android 4.1之前,方法android.graphics.PorterDuffColorFilter android.support.graphics.drawable.VectorDrawableCompat.updateTintFilter(android.graphics.PorterDuffColorFilter,android.content.res.ColorStateList,android.graphics.PorterDuff$Mode(会错误地覆盖android.graphics.drawable.Drawable中的package-private方法
  • 。 08-13
  • 05:51:35.183 2885-2885/?I/演示日志:测试开始之前服务
  • 08-13 05:51:35.187 2885-2885/?I/演示日志:测试后启动服务
  • 08-13 05:51:35.490 2885-2937/com.mxyue.www.testdemo I/OpenGLRenderer:初始化的EGL,版本1.4
  • 08-13 05:51:35.548 2885-2937/com.mxyue.www.testdemo W/EGL_emulation:未实现eglSurfaceAttrib

我发现其他人像我一样的代码工作正常。 为什么我的代码不起作用。

这是对我的影响吗?

类加载器引用的未知路径:

TestService的包是package com.mxyue.www.testdemo。在清单中也使用相同的:<service android:name="com.mxyue.www.testdemo.TestService"></service>

相关内容

最新更新