android Service基础(启动服务与绑定服务)
作者:不如沉默啊 时间:2023-05-07 12:31:34
Service是Android中一个类,它是Android 四大组件之一,使用Service可以在后台执行耗时的操作(注意需另启子线程),其中Service并不与用户产生UI交互。其他的应用组件可以启动Service,即便用户切换了其他应用,启动的Service仍可在后台运行。一个组件可以与Service绑定并与之交互,甚至是跨进程通信。通常情况下Service可以在后台执行网络请求、播放音乐、执行文件读写操作或者与contentprovider交互等。
本文主要讲述service服务里的启动与绑定服务。
首先,XML程序如下:
<?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=".MainActivity">
<Button
android:id="@+id/start"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="operate"
android:text="启动服务" />
<Button
android:id="@+id/stop"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="停止服务"
android:onClick="operate" />
<Button
android:id="@+id/bind"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="绑定服务"
android:onClick="operate" />
<Button
android:id="@+id/unbind"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="解绑服务"
android:onClick="operate"/>
</LinearLayout>
创建一个service类,并写创建、启动、绑定、摧毁、解绑五个方法
代码如下:
package com.example.service;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;
public class MyService extends Service {
private int i;
public MyService() {
}
//创建
@Override
public void onCreate() {
super.onCreate();
Log.e("TAG","服务创建了");
}
class MyBinder extends Binder {
//定义自己需要的方法(实现进度监控)
public int getProcess(){
return i;
}
}
//启动方法
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.e("TAG","服务启动了");
return super.onStartCommand(intent, flags, startId);
}
//解绑
@Override
public boolean onUnbind(Intent intent) {
Log.e("TAG","服务解绑了");
return super.onUnbind(intent);
}
//摧毁
@Override
public void onDestroy() {
Log.e("TAG","服务摧毁了");
super.onDestroy();
}
//绑定方法
@Override
public IBinder onBind(Intent intent) {
// TODO: Return the communication channel to the service.
// throw new UnsupportedOperationException("Not yet implemented");
Log.e("TAG","服务绑定了");
return new MyBinder();
}
}
然后在MainActivity里面写点击启动方法:
public void operate(View v) {
switch (v.getId()){
case R.id.start:
//启动服务 :创建——启动——摧毁
//如果服务已经创建了,后续重复启动,操作的都是同一个服务,不回在创建新 的服务,除非先摧毁他
Intent it1=new Intent(this,MyService.class);
startService(it1);
break;
case R.id.stop:
Intent it2=new Intent(this,MyService.class);
stopService(it2);
break;
}
}
然后写绑定的方法:
注意:捆绑和解绑的对象应该是同一个对象,如果捆绑与解绑的对象不一样,则会报如下的错误:
Service not registered: com.m1910.servicetest.MainActivity$1@41ddfcc0
本篇文章捆绑与解绑的对象都是conn,定义一个全局变量:
private ServiceConnection conn=new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
}
@Override
public void onServiceDisconnected(ComponentName componentName) {
}
};
然后写解绑与捆绑的方法:
case R.id.bind:
//绑定服务
Intent it3=new Intent(this,MyService.class);
bindService(it3,conn,BIND_AUTO_CREATE);
break;
case R.id.unbind:
//解绑服务
// unbindService(conn);
// if (isBound) {
// unbindService(conn);// 解绑服务
// isBound = false;
// }
unbindService(conn);//解绑服务
break;
完整的程序如下:
package com.example.service;
import androidx.appcompat.app.AppCompatActivity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.util.Log;
import android.view.View;
public class MainActivity extends AppCompatActivity {
private boolean isBound = false;
private ServiceConnection conn=new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
}
@Override
public void onServiceDisconnected(ComponentName componentName) {
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void operate(View v) {
switch (v.getId()){
case R.id.start:
//启动服务 :创建——启动——摧毁
//如果服务已经创建了,后续重复启动,操作的都是同一个服务,不回在创建新 的服务,除非先摧毁他
Intent it1=new Intent(this,MyService.class);
startService(it1);
break;
case R.id.stop:
Intent it2=new Intent(this,MyService.class);
stopService(it2);
break;
case R.id.bind:
//绑定服务
Intent it3=new Intent(this,MyService.class);
bindService(it3,conn,BIND_AUTO_CREATE);
break;
case R.id.unbind:
//解绑服务
// unbindService(conn);
// if (isBound) {
// unbindService(conn);// 解绑服务
// isBound = false;
// }
unbindService(conn);//解绑服务
break;
}
}
}
来源:https://blog.csdn.net/weixin_58308529/article/details/122185689
标签:android,Service
0
投稿
猜你喜欢
c# 圆形识别方案和直线识别方案的参考示例
2022-03-10 13:44:11
深入了解Java数据结构和算法之堆
2022-07-23 19:45:49
C#中正则表达式(Regex)过滤内容的基本使用方法
2023-11-26 12:51:00
Java并发编程示例(七):守护线程的创建和运行
2023-11-25 11:39:32
关于C#操作文件路径(Directory)的常用静态方法详解
2023-06-06 10:40:12
Android中点击按钮启动另一个Activity及Activity之间传值问题
2023-09-01 13:08:20
Android自定义wheelview随机选号效果
2021-09-12 06:36:53
三种Android单击事件onclick的实现方法
2022-05-21 16:54:03
WPF自定义控件和样式之自定义按钮(Button)
2022-04-09 14:39:32
详解C#中三个关键字params,Ref,out
2021-09-25 18:54:02
C#并查集(union-find)算法详解
2023-10-27 12:18:54
Spring AOP实现复杂的日志记录操作(自定义注解)
2023-01-24 15:21:50
Spring集成jedis的配置与使用简单实例
2023-07-02 04:11:39
Spring学习笔记1之IOC详解尽量使用注解以及java代码
2021-10-07 16:17:02
Java并发控制机制详解
2022-12-12 22:07:56
Java中Cookie和Session详解及区别总结
2022-08-24 21:55:10
2020最新eclipse安装过程及细节
2023-11-06 09:25:56
ArrayList在for循环中使用remove方法移除元素方法介绍
2022-11-20 03:50:18
C#实现剪切板功能
2023-01-16 12:26:48
Android Jetpack库剖析之LiveData组件篇
2022-08-31 02:08:13