Service简介: Service是被设计用来在后台执行一些需要长时间运行的操作。 Android由于允许Service在后台运行,甚至在结束Activity后,因此相对来说
Service简介:
Service是被设计用来在后台执行一些需要长时间运行的操作。
Android由于允许Service在后台运行,甚至在结束Activity后,因此相对来说,Service相比Activity拥有更高的优先级。
创建Service:
要创建一个最基本的Service,需要完成以下工作:1)创建一个Java类,并让其继承Service 2)重写onCreate()和onBind()方法
其中,onCreate()方法是当该Service被创建时执行的方法,onBind()是该Service被绑定时执行的方法。
public class ExampleService extends Service{
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
}
}
当创建了一个新的Service后,还必须在AndroidManifest.xml文件中对他进行配置,需要在application节点内包含一个Service标记。
<service android:name=".ExampleService" android:enabled="true" android:permission="exam02.chenqian.com.servicedemo"></service>
当然,如果你想要你自定义的Service仅能被自己编写的该应用程序使用,还可以在标签内添加:
android:permission="exam02.chenqian.com.servicedemo"
让Service执行特定的任务:
如果想要Service执行特定的任务,可以复写Service的onStartCommand()方法,注意在api15之前为onStart()方法,现已不推荐,onStartCommand()方法的执行为该Service onCreate()之后。
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return super.onStartCommand(intent, flags, startId);
}
启动和停止Service:
显式启动一个Service:
// 显示启动ExampleService
Intent intent = new Intent(this,ExampleService.class);
// 启动ExampleService
startService(intent);
为了方便观察,我们可以在之前创建的自定义的Service类中的onStartCommand()方法中添加Log.i("ServiceState","-------------->is Running");
当我们从MainActivity调用运行时,可以在LoGCat中观察到输出: I/ServiceState: is Running
当然,我们也可以停止一个Service,为了让我们更清晰的观察到效果,我们可以在ExampleService类中复写onDestroy()方法:
@Override
public void onDestroy() {
Log.i("ServiceState","------------------>Destroy");
super.onDestroy();
}
可以在MainActivity中通过以下方式停止一个Service:
显示停止一个Service:注意,写这里时更换了一个Service,并将该自定义的Service定位MyService,已经不是之前的ExampleService,不过您认可按照自己之前的继续编写,毕竟方法都是一样的;-)
//显示关闭Service
Intent serviceIntent = new Intent(MainActivity.this,MyService.class);
//关闭Service
stopService(serviceIntent);
注意Service的调用不可嵌套,因此无论Service被调用了多少次,对stopService()停止的一次调用就会终止它所匹配运行中的Service。
由于Service具有较高的优先级,通常不会被运行时终止,因此可以通过自终止来避免后台运行Service耗费系统的资源。具体方法为在onStartCommand()方法中加入stopSelf();但是要注意的是这里的stopSelf()并不是直接终止Service,而是当Service的所有功能或请求执行完后,将Service停止掉,而不是等待系统回收,停止会调用onDestroy()销毁该Service。
将Service绑定到Activity:
当一个Service在一个Activity中被调用的时候,并不会随着Activity的销毁而销毁,而是仍有可能继续在后台运行着继续占用系统的资源,因此如果实现当Activity销毁时自动停止与其相关的服务,将会极大的节约系统的资源占用,我们可以通过以下方式实现Activity与Service的绑定:
XML布局文件:在该布局文件中实现了四个按钮,分别执行启动Service、停止Service、绑定Service和解除绑定Service,清楚了吧:-)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="Http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="demo.chenqian.com.androidserverdemo.MainActivity">
<!-- 开启Service -->
<Button
android:id="@+id/btnStartService"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/startService"/>
<!-- 关闭Service -->
<Button
android:id="@+id/btnStopService"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/stopService"/>
<!-- 绑定Service -->
<Button
android:id="@+id/btnBindService"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/bindService"/>
<!-- 解绑Service -->
<Button
android:id="@+id/btnUnbindService"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/unbindService"/>
</LinearLayout>
MyService类:
package demo.chenqian.com.androidserverdemo;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;
public class MyService extends Service{
private MyBinder binder = new MyBinder();
@Override
public void onCreate() {
Log.d("ServiceInfo","创建成功");
super.onCreate();
}
@Nullable
@Override
public IBinder onBind(Intent intent) {
Log.d("ServiceInfo","绑定成功");
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d("ServiceInfo","开始执行");
return super.onStartCommand(intent, flags, startId);
}
@Override
public boolean onUnbind(Intent intent) {
Log.d("ServiceInfo","解绑成功");
return super.onUnbind(intent);
}
@Override
public void onDestroy() {
Log.d("ServiceInfo","销毁成功");
super.onDestroy();
}
class MyBinder extends Binder{ MyService getService(){ Log.d("ServiceInfo","成功得到当前服务实例"); return MyService.this; } } }
MainActivity类:
package demo.chenqian.com.androidserverdemo;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Binder;
import android.os.IBinder;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements View.OnClickListener{
private Context mContext;
private Button btnStartService;
private Button btnStopService;
private Button btnBindService;
private Button btnUnbindService;
private MyService myService;
private Intent serviceIntent;
private boolean isBond;
private ServiceConnection connection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
Log.d("ServiceState","连接成功");
myService = ((MyService.MyBinder)service).getService();
}
@Override
public void onServiceDisconnected(ComponentName name) {
Log.d("ServiceState","关闭连接");
//当连接指向实例为null没有指引的连接的实例时,好被虚拟机回收,降低占用的资源
myService = null;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//初始化数据
mContext = this;
isBond = false;
//引入需要用到的组件
btnStartService = (Button) findViewById(R.id.btnStartService);
btnStopService = (Button) findViewById(R.id.btnStopService);
btnBindService = (Button) findViewById(R.id.btnBindService);
btnUnbindService = (Button) findViewById(R.id.btnUnbindService);
//为按钮添加单击事件
btnStartService.setOnClickListener(this);
btnStopService.setOnClickListener(this);
btnBindService.setOnClickListener(this);
btnUnbindService.setOnClickListener(this);
}
@Override
protected void onStart() {
serviceIntent = new Intent(this,MyService.class);
super.onStart();
}
@Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btnStartService:
//开启Service
startService(serviceIntent);
break;
case R.id.btnStopService:
//关闭Service
stopService(serviceIntent);
break;
case R.id.btnBindService:
//绑定Service
isBond = bindService(serviceIntent,connection,Context.BIND_AUTO_CREATE);
break;
case R.id.btnUnbindService:
//解绑Service,当连接为null是解绑会报错
if(isBond){
unbindService(connection);
//如果解绑成功,则修改连接标识为假
isBond = false;
}
break;
}
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="demo.chenqian.com.androidserverdemo">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<cateGory android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyService" android:enabled="true" android:permission="demo.chenqian.com.androidserverdemo"></service>
</application>
</manifest>
关于以后:
1、感觉Binder那块还给大家解释的不太清楚,以后再深入研究下补充完整
2、有时间会编写一个简单的后台播放音乐的实例提供给大家参考一下
以上所述是小编给大家介绍的详解Android中的Service,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
您可能感兴趣的文章:Android Service类与生命周期详细介绍Android IntentService详解及使用实例Android 如何保证service在后台不被killandroid使用NotificationListenerService监听通知栏消息Android实现微信自动向附近的人打招呼(AccessibilityService)Android AccessibilityService实现微信抢红包插件Android Service中使用Toast无法正常显示问题的解决方法Android基于service实现音乐的后台播放功能示例Android Service的启动过程分析
--结束END--
本文标题: 详解Android中的Service
本文链接: https://lsjlt.com/news/28301.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0