Android成长日记-Android四大组件之Service组件的学习
1、什么是Service?
Service是Android四大组件中与Activity最相似的组件,它们都代表可执行的程序,Service与Activity的区别在于:Service一直在后台运行,它没有用户界面,所以绝不会到前台来。一旦Service被启动起来,它就与Activity一样。它完全具有自己的生命周期。
A Service is an application component that can perform long-running operations in the background and does not provide a user interface. Another application component can start a service and it will continue to run in the background even if the user switches to another application. Additionally, a component can bind to a service to interact with it and even perform interprocess communication (IPC). For example, a service might handle network transactions, play music, perform file I/O, or interact with a content provider, all from the background. (来自官方解释:http://developer.android.com/guide/components/services.html)
2.小编经过查阅资料,以下是Service的相关资料:
定义:后台运行,不可见,没有界面
优先级高于Activity
用途:
播放音乐,记录地理信息位置的改变,监听某种动作.....
注意:
运行在主线程,不能用它来做耗时的请求或者动作
可以在服务中开一个线程,在线程中做耗时操作
类型:
1.本地服务(Local Service)
应用程序内部
startService stopService stopSelf stopSelfResult
bindService unbindService
2.远程服务(Remote Service)
Android系统内部程序之间
定义IBinder接口
Start 方式特点
1.服务跟启动源没有任何联系
2.无法得到服务对象
Bind 方式特点
1.通过Ibinder接口实例,返回一个ServiceConnection对象给启动源
2.通过ServiceConnection对象的相关方法可以得到Service对象
3.下面小编将通过一个demo讲述Service:
&实现service的步骤:1.创建一个类继承Service,完成必要的方法;2.在AndroidMinifast文件中进行注册 3. 调用
在此之前小编将讲述一个通过startService启动Servie
package com.demo.internet.musicapp; import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log; /**
* Created by monster on 2015/7/2.
* 通过Start方式启动服务,这种服务的特点:
* 1.服务跟启动源没有任何联系
* 2.无法得到服务对象
*/
public class MusicService extends Service { @Override
public void onCreate() {
Log.i("info", "Service--onCreate()");
super.onCreate();
} @Override
public IBinder onBind(Intent intent) {
Log.i("info", "Service--onBind()");
return null;
} @Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.i("info", "Service--onStartCommand()");
return super.onStartCommand(intent, flags, startId);
} @Override
public void onDestroy() {
Log.i("info", "Service--onDestroy()");
super.onDestroy();
}
}调用:
intent1 =new Intent(MainActivity.this, MyStartService.class);
startService(intent1);
-------------------------------------------------------------------------------------------------------------------------------------------
下面小编通过使用bindService方式来实现播放音乐的demo
①.布局不予讲述
②.创建BindMusicService.java 继承Service ,并且进行注册
package com.demo.internet.musicapp; import android.app.Service;
import android.content.Intent;
import android.content.ServiceConnection;
import android.media.MediaPlayer;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log; /**
* Created by monster on 2015/7/2.
* 方式特点:
* 1.通过Ibinder接口实例,返回一个ServiceConnection对象给启动源
* 2.通过ServiceConnection对象的相关方法可以得到Service对象
*/
public class BindMusicService extends Service {
private MediaPlayer mPlayer; //声明一个mediaPlayer对象
@Override
public IBinder onBind(Intent intent) {
Log.i("info", "BindService--onBind()");
return new MyBinder();
} @Override
public void unbindService(ServiceConnection conn) {
Log.i("info", "BindService--unbindService()");
super.unbindService(conn);
} @Override
public void onCreate() {
Log.i("info", "BindService--onCreate()");
super.onCreate();
mPlayer=MediaPlayer.create(getApplicationContext(),R.raw.meizu_music); //实例化对象
//设置可以重复播放
mPlayer.setLooping(true);
} @Override
public void onDestroy() {
Log.i("info", "BindService--onDestroy()");
super.onDestroy();
mPlayer.stop();
}
//必须通过继承Binder的方式才可以获得binderService服务
public class MyBinder extends Binder{
public BindMusicService getService(){
return BindMusicService.this;
}
}
public void Play(){
Log.i("info", "播放");
mPlayer.start();
}
public void Pause(){
Log.i("info", "暂停");
mPlayer.pause();
} }③. 在MainActivity中创建ServiceConnection接口并且实现未实现的方法,然后创建BindMusicService的声明,调用的时候bindService方法进行调用
package com.demo.internet.musicapp; import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.view.View;
import android.widget.Button;
import android.widget.Toast; public class MainActivity extends Activity implements View.OnClickListener{
private Button btn_start,btn_stop,bind_btn_start,bind_btn_stop,bind_btn_play,bind_btn_pause;
Intent intent1;
Intent intent2;
BindMusicService service;
ServiceConnection con=new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder binder) {
//当服务跟启动源连接的时候 会自动回调
service=((BindMusicService.MyBinder)binder).getService();
} @Override
public void onServiceDisconnected(ComponentName name) {
//当服务跟启动源断开的时候 会自动回调
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
initView();
} private void initView() {
btn_start= (Button) findViewById(R.id.btn_start);
btn_stop= (Button) findViewById(R.id.btn_stop);
bind_btn_start= (Button) findViewById(R.id.bind_btn_start);
bind_btn_stop= (Button) findViewById(R.id.bind_btn_stop);
bind_btn_play= (Button) findViewById(R.id.bind_btn_play);
bind_btn_pause= (Button) findViewById(R.id.bind_btn_pause);
//绑定监听事件
btn_start.setOnClickListener(this);
btn_stop.setOnClickListener(this);
bind_btn_start.setOnClickListener(this);
bind_btn_stop.setOnClickListener(this);
bind_btn_play.setOnClickListener(this);
bind_btn_pause.setOnClickListener(this);
} @Override
public void onClick(View v) {
switch (v.getId()){
case R.id.btn_start:
//intent1=new Intent(MainActivity.this,MusicService.class);
//startService(intent1);
break;
case R.id.btn_stop:
//stopService(intent1);
break; case R.id.bind_btn_start:
intent2=new Intent(MainActivity.this,BindMusicService.class);
bindService(intent2,con,BIND_AUTO_CREATE);//绑定服务
break;
case R.id.bind_btn_play:
service.Play();
break;
case R.id.bind_btn_pause:
service.Pause();
break;
case R.id.bind_btn_stop:
unbindService(con);//解除绑定服务
break;
}
}
}
-------------------------------------------------------------------------------------------------------------------------------------------
4.效果图演示:

5.源码分享:
https://git.coding.net/monsterLin/MusicAppService.git
Android成长日记-Android四大组件之Service组件的学习的更多相关文章
- Android成长日记-Android布局优化
Android常用布局 1. LinearLayout(线性布局) 2. RelativeLayout(相对布局) 3. TableLayout(表格布局) 4. AbsoluteLayou(绝对布局 ...
- Android成长日记-Android监听事件的方法
1. Button鼠标点击的监听事件 --setOnClickListener 2. CheckBox, ToggleButton , RadioGroup的改变事件 --setOnCheckedCh ...
- Tomcat组件梳理—Service组件
Tomcat组件梳理-Service组件 1.组件定义 Tomcat中只有一个Server,一个Server可以用多个Service,一个Service可以有多个Connector和一个Contain ...
- Android成长日记-Activity
① Activity是一个应用程序组件,提供用户与程序交互的界面 ② Android四大组件 ---Activity ---Service ---BroadcastReceiver ---Conten ...
- Android成长日记-五大布局
1. 五布局之线性布局LinearLayout 特点:它包含的子控件将以横向或竖向的方式排列 ps:android:gravity=”center|bottom”(gravity允许多级联用) Tip ...
- Android成长日记-使用ToggleButton实现灯的开关
案例演示 此案例实现思路:通过ToggleButton控件,ImageView控件实现 ---xml代码: <!-- textOn:true textOff:falase[s1] --> ...
- Android成长日记-使用PagerAdapter实现页面切换
Tip:此方式可以实现页面切换 1. 创建view1.xml,view2.xml,view3.xml,main.xml 在main.xml中创建 <android.support.v4.view ...
- Android成长日记-使用GridView显示多行数据
本节将实现以下效果 Ps:看起来很不错的样子吧,而且很像九宫格/se ----------------------------------------------------------------- ...
- Android成长日记-仿跑马灯的TextView
在程序设计中有时候一行需要显示多个文字,这时候在Android中默认为分为两行显示,但是对于必须用一行显示的文字需要如何使用呢? ----------------------------------- ...
随机推荐
- noip2008 双栈排序
题目描述 Description \(Tom\)最近在研究一个有趣的排序问题.如图所示,通过\(2\)个栈\(S_1\)和\(S_2\),\(Tom\)希望借助以下\(4\)种操作实现将输入序列升序排 ...
- AngularJS中的digest循环$apply
欢迎大家指导与讨论 : ) 前言 Angular会拓展这个标准的浏览器流程,创建一个Angular上下文.这个Angular上下文指的是运行在Angular事件循环内的特定代码,该Angular事件循 ...
- Post model至Web Api创建或是保存数据
前一篇<Post model至Web Api>http://www.cnblogs.com/insus/p/4343538.html中,使用Post来从Web Api获取数据.由于Post ...
- salt yum安装lamp
在批量安装软件前,先找台测试机yum装一遍,看是否报错等,是否依赖包全等 . 本次我们在dev环境下搞. 先看一下已搞成功的目录结构 定义dev环境的第二个好处 ...
- 小记sql server临时表与表变量的区别
临时表与表变量都可以起到“临时”的作用,那么两者主要的区别是什么呢? 这里不讨论创建方式,以及全局临时表.会话临时表这些,主要记录一下个人对两者的主要区别以及适用情况的看法,有什么不对或补充的地方,欢 ...
- Theano3.3-练习之逻辑回归
是官网上theano的逻辑回归的练习(http://deeplearning.net/tutorial/logreg.html#logreg)的讲解. Classifying MNIST digits ...
- js基础知识温习:Javascript中如何模拟私有方法
本文涉及的主题虽然很基础,在很多人眼里属于小伎俩,但在JavaScript基础知识中属于一个综合性的话题.这里会涉及到对象属性的封装.原型.构造函数.闭包以及立即执行表达式等知识. 公有方法 公有方法 ...
- matlab 画图数据导入
http://www.yiibai.com/matlab/matlab_data_import.html Python 执行py 文件: 在要执行文件处按shift右击鼠标打开cmd 命令窗口,输入: ...
- 记一次在Eclipse中用Axis生成webservice服务端的过程中出现的问题
问题一. Unable to find config file. Creating new servlet engine config file: /WEB-INF/server-config.ws ...
- 快速向表中插入大量数据Oracle中append与Nologging
来源于:http://blog.sina.com.cn/s/blog_61cd89f60102e7gi.html 当需要对一个非常大的表INSERT的时候,会消耗非常多的资源,因为update表的时候 ...


