1、Service的使用
Activity可以呈现一个用户界面,但是Service确实运行在后台,新建一个Myservice.java,会在AndroidManifest中自动配置标签。
package="com.example.lhb.service" >
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
android:name=".MainActivity"
android:label="@string/app_name" >
android:name=".MyService"
android:enabled="true"
android:exported="true" >
在新建的Service中重写onStartCommand()函数,创建一个线程,点击启动线程按钮,让它在后台循环打印,注意按后退键退出Activity,服务仍在进行。
package com.example.lhb.service;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
public class MyService extends Service {
public MyService() {
}
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
throw new UnsupportedOperationException("Not yet implemented");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
new Thread(){
@Override
public void run() {
super.run();
do {
System.out.println("Service is running......");
try {
sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
} while (true);
}
}.start();
return super.onStartCommand(intent, flags, startId);
}
}
主代码如下:
package c