Service
定义:
Service是可以长时间运行在后台的,是不可见的没有界面的组件;
Service运行在主线程中;
Service可以跨进程调用。
使用startService方式启动Service的步骤:
1. 新建类继承Service;
2. 重写onCreate方法;(在创建时调用的方法,可以用来做数据初始化,Service在没有停止之前,只会执行一次)
3. 实现onBind抽象方法;
4. 重写onStartCommand方法;(创建后会调用onStartCommand,此方法中可以接收调用者传递过来的参数,并且可以编写需要的逻辑代码,当重复调用Service时,onStartCommand会重复执行)
5. 重写onDestory方法;(在退出时调用,此方法中可以编写释放资源的操作)
6. 在AndroidManifest中注册Service;(使用< Service >标签注册,同Activity注册)
7. 在有Context环境中通过startService启动Service;
8. 在有Context环境中通过startServiceServ停止Service;
代码展示
xml文件
首先要在布局文件中设置两个按钮,用来启动和停止Service
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.administrator.sharedapplication.Main3Activity">
<Button
android:id="@+id/start_btn"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="启动Service"/>
<Button
android:id="@+id/stop_btn"
android:layout_width="match_parent"
android:layout_height="50dp"
android:text="停止Service"/>
</LinearLayout>
然后在Activity文件中对按钮进行定义、绑定ID、设置监听和点击事件
package com.example.administrator.sharedapplication;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class Main3Activity extends AppCompatActivity implements View.OnClickListener{
private Button startBtn;
private Button stopBtn;
private Intent intent;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main3);
bindID();
}
private void bindID() {
startBtn=findViewById(R.id.start_btn);
stopBtn=findViewById(R.id.stop_btn);
startBtn.setOnClickListener(this);
stopBtn.setOnClickListener(this);
}
@Override
public void onClick(View view) {
switch (view.getId()){
case R.id.start_btn:
intent = new Intent(this,MyService.class);
startService(intent);//启动service
break;
case R.id.stop_btn:
stopService(intent);//停止service
break;
default:
break;
}
}
}
最后在新建的类中写入MyService方式启动Service的步骤
package com.example.administrator.sharedapplication;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;
/**
* Created by Administrator on 2018/3/21.
*/
public class MyService extends Service{
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
Log.e("Service"+Thread.currentThread().getName(),"onCreate...");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.e("Service","onStartCommand...");
new Thread(new Runnable() {
@Override
public void run() {
for (int i=0;i<10;i++){
Log.e("Service"+Thread.currentThread().getName(),i+"***");
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}).start();
return super.onStartCommand(intent, flags, startId);
}
@Override
public void onDestroy() {
super.onDestroy();
Log.e("Service"+Thread.currentThread().getName(),"onDestroy...");
}
}