- 浏览: 148077 次
- 性别:
- 来自: 武汉
文章分类
最新评论
-
flyingcatjj:
很适合我这种刚接触的
myeclipse xfire 开发webservice实例 -
tangzlboy:
非常好,非常详细,非常中用。
linux入门 -
yzz9i:
楼主说的很是详细。
myeclipse xfire 开发webservice实例 -
zqx888191:
很再理阿!
老程序员的教诲 -
simplecat123:
...
SQLite数据读取
写道
大家好,上一节我讲解了Android Activity的生命周期,这一节我将讲解一下Service,首先我们要知道Service具体是干什么的,什么时候用到?以及它的生命周期等。
Service概念及用途:
Android中的服务,它与Activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,Service进程并没有结束,它仍然在后台运行,那我们什么时候会用到Service呢?比如我们播放音乐的时候,有可能想边听音乐边干些其他事情,当我们退出播放音乐的应用,如果不用Service,我们就听不到歌了,所以这时候就得用到Service了,又比如当我们一个应用的数据是通过网络获取的,不同时间(一段时间)的数据是不同的这时候我们可以用Service在后台定时更新,而不用每打开应用的时候在去获取。
Service生命周期 :
Android Service的生命周期并不像Activity那么复杂,它只继承了onCreate(),onStart(),onDestroy()三个方法,当我们第一次启动Service时,先后调用了onCreate(),onStart()这两个方法,当停止Service时,则执行onDestroy()方法,这里需要注意的是,如果Service已经启动了,当我们再次启动Service时,不会在执行onCreate()方法,而是直接执行onStart()方法,具体的可以看下面的实例。
Service与Activity通信:
Service后端的数据最终还是要呈现在前端Activity之上的,因为启动Service时,系统会重新开启一个新的进程,这就涉及到不同进程间通信的问题了(AIDL)这一节我不作过多描述,当我们想获取启动的Service实例时,我们可以用到bindService和onBindService方法,它们分别执行了Service中IBinder()和onUnbind()方法。
为了让大家 更容易理解,我写了一个简单的Demo,大家可以模仿着我,一步一步的来。
第一步:新建一个Android工程,我这里命名为ServiceDemo.
第二步:修改main.xml代码,我这里增加了四个按钮,代码如下:
view plaincopy to clipboardprint?
01.<?xml version="1.0" encoding="utf-8"?>
02.<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
03. android:orientation="vertical"
04. android:layout_width="fill_parent"
05. android:layout_height="fill_parent"
06. >
07. <TextView
08. android:id="@+id/text"
09. android:layout_width="fill_parent"
10. android:layout_height="wrap_content"
11. android:text="@string/hello"
12. />
13. <Button
14. android:id="@+id/startservice"
15. android:layout_width="fill_parent"
16. android:layout_height="wrap_content"
17. android:text="startService"
18. />
19. <Button
20. android:id="@+id/stopservice"
21. android:layout_width="fill_parent"
22. android:layout_height="wrap_content"
23. android:text="stopService"
24. />
25. <Button
26. android:id="@+id/bindservice"
27. android:layout_width="fill_parent"
28. android:layout_height="wrap_content"
29. android:text="bindService"
30. />
31. <Button
32. android:id="@+id/unbindservice"
33. android:layout_width="fill_parent"
34. android:layout_height="wrap_content"
35. android:text="unbindService"
36. />
37.</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/startservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="startService"
/>
<Button
android:id="@+id/stopservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="stopService"
/>
<Button
android:id="@+id/bindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="bindService"
/>
<Button
android:id="@+id/unbindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="unbindService"
/>
</LinearLayout>
第三步:新建一个Service,命名为MyService.java代码如下:
view plaincopy to clipboardprint?
01.package com.tutor.servicedemo;
02.import android.app.Service;
03.import android.content.Intent;
04.import android.os.Binder;
05.import android.os.IBinder;
06.import android.text.format.Time;
07.import android.util.Log;
08.public class MyService extends Service {
09. //定义个一个Tag标签
10. private static final String TAG = "MyService";
11. //这里定义吧一个Binder类,用在onBind()有方法里,这样Activity那边可以获取到
12. private MyBinder mBinder = new MyBinder();
13. @Override
14. public IBinder onBind(Intent intent) {
15. Log.e(TAG, "start IBinder~~~");
16. return mBinder;
17. }
18. @Override
19. public void onCreate() {
20. Log.e(TAG, "start onCreate~~~");
21. super.onCreate();
22. }
23.
24. @Override
25. public void onStart(Intent intent, int startId) {
26. Log.e(TAG, "start onStart~~~");
27. super.onStart(intent, startId);
28. }
29.
30. @Override
31. public void onDestroy() {
32. Log.e(TAG, "start onDestroy~~~");
33. super.onDestroy();
34. }
35.
36.
37. @Override
38. public boolean onUnbind(Intent intent) {
39. Log.e(TAG, "start onUnbind~~~");
40. return super.onUnbind(intent);
41. }
42.
43. //这里我写了一个获取当前时间的函数,不过没有格式化就先这么着吧
44. public String getSystemTime(){
45.
46. Time t = new Time();
47. t.setToNow();
48. return t.toString();
49. }
50.
51. public class MyBinder extends Binder{
52. MyService getService()
53. {
54. return MyService.this;
55. }
56. }
57.}
package com.tutor.servicedemo;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.text.format.Time;
import android.util.Log;
public class MyService extends Service {
//定义个一个Tag标签
private static final String TAG = "MyService";
//这里定义吧一个Binder类,用在onBind()有方法里,这样Activity那边可以获取到
private MyBinder mBinder = new MyBinder();
@Override
public IBinder onBind(Intent intent) {
Log.e(TAG, "start IBinder~~~");
return mBinder;
}
@Override
public void onCreate() {
Log.e(TAG, "start onCreate~~~");
super.onCreate();
}
@Override
public void onStart(Intent intent, int startId) {
Log.e(TAG, "start onStart~~~");
super.onStart(intent, startId);
}
@Override
public void onDestroy() {
Log.e(TAG, "start onDestroy~~~");
super.onDestroy();
}
@Override
public boolean onUnbind(Intent intent) {
Log.e(TAG, "start onUnbind~~~");
return super.onUnbind(intent);
}
//这里我写了一个获取当前时间的函数,不过没有格式化就先这么着吧
public String getSystemTime(){
Time t = new Time();
t.setToNow();
return t.toString();
}
public class MyBinder extends Binder{
MyService getService()
{
return MyService.this;
}
}
}
第四步:修改ServiceDemo.java,代码如下:
view plaincopy to clipboardprint?
01.package com.tutor.servicedemo;
02.import android.app.Activity;
03.import android.content.ComponentName;
04.import android.content.Context;
05.import android.content.Intent;
06.import android.content.ServiceConnection;
07.import android.os.Bundle;
08.import android.os.IBinder;
09.import android.view.View;
10.import android.view.View.OnClickListener;
11.import android.widget.Button;
12.import android.widget.TextView;
13.public class ServiceDemo extends Activity implements OnClickListener{
14.
15. private MyService mMyService;
16. private TextView mTextView;
17. private Button startServiceButton;
18. private Button stopServiceButton;
19. private Button bindServiceButton;
20. private Button unbindServiceButton;
21. private Context mContext;
22.
23. //这里需要用到ServiceConnection在Context.bindService和context.unBindService()里用到
24. private ServiceConnection mServiceConnection = new ServiceConnection() {
25. //当我bindService时,让TextView显示MyService里getSystemTime()方法的返回值
26. public void onServiceConnected(ComponentName name, IBinder service) {
27. // TODO Auto-generated method stub
28. mMyService = ((MyService.MyBinder)service).getService();
29. mTextView.setText("I am frome Service :" + mMyService.getSystemTime());
30. }
31.
32. public void onServiceDisconnected(ComponentName name) {
33. // TODO Auto-generated method stub
34.
35. }
36. };
37. public void onCreate(Bundle savedInstanceState) {
38. super.onCreate(savedInstanceState);
39. setContentView(R.layout.main);
40. setupViews();
41. }
42.
43. public void setupViews(){
44.
45. mContext = ServiceDemo.this;
46. mTextView = (TextView)findViewById(R.id.text);
47.
48.
49.
50. startServiceButton = (Button)findViewById(R.id.startservice);
51. stopServiceButton = (Button)findViewById(R.id.stopservice);
52. bindServiceButton = (Button)findViewById(R.id.bindservice);
53. unbindServiceButton = (Button)findViewById(R.id.unbindservice);
54.
55. startServiceButton.setOnClickListener(this);
56. stopServiceButton.setOnClickListener(this);
57. bindServiceButton.setOnClickListener(this);
58. unbindServiceButton.setOnClickListener(this);
59. }
60.
61. public void onClick(View v) {
62. // TODO Auto-generated method stub
63. if(v == startServiceButton){
64. Intent i = new Intent();
65. i.setClass(ServiceDemo.this, MyService.class);
66. mContext.startService(i);
67. }else if(v == stopServiceButton){
68. Intent i = new Intent();
69. i.setClass(ServiceDemo.this, MyService.class);
70. mContext.stopService(i);
71. }else if(v == bindServiceButton){
72. Intent i = new Intent();
73. i.setClass(ServiceDemo.this, MyService.class);
74. mContext.bindService(i, mServiceConnection, BIND_AUTO_CREATE);
75. }else{
76. mContext.unbindService(mServiceConnection);
77. }
78. }
79.
80.
81.
82.}
package com.tutor.servicedemo;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class ServiceDemo extends Activity implements OnClickListener{
private MyService mMyService;
private TextView mTextView;
private Button startServiceButton;
private Button stopServiceButton;
private Button bindServiceButton;
private Button unbindServiceButton;
private Context mContext;
//这里需要用到ServiceConnection在Context.bindService和context.unBindService()里用到
private ServiceConnection mServiceConnection = new ServiceConnection() {
//当我bindService时,让TextView显示MyService里getSystemTime()方法的返回值
public void onServiceConnected(ComponentName name, IBinder service) {
// TODO Auto-generated method stub
mMyService = ((MyService.MyBinder)service).getService();
mTextView.setText("I am frome Service :" + mMyService.getSystemTime());
}
public void onServiceDisconnected(ComponentName name) {
// TODO Auto-generated method stub
}
};
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setupViews();
}
public void setupViews(){
mContext = ServiceDemo.this;
mTextView = (TextView)findViewById(R.id.text);
startServiceButton = (Button)findViewById(R.id.startservice);
stopServiceButton = (Button)findViewById(R.id.stopservice);
bindServiceButton = (Button)findViewById(R.id.bindservice);
unbindServiceButton = (Button)findViewById(R.id.unbindservice);
startServiceButton.setOnClickListener(this);
stopServiceButton.setOnClickListener(this);
bindServiceButton.setOnClickListener(this);
unbindServiceButton.setOnClickListener(this);
}
public void onClick(View v) {
// TODO Auto-generated method stub
if(v == startServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.startService(i);
}else if(v == stopServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.stopService(i);
}else if(v == bindServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.bindService(i, mServiceConnection, BIND_AUTO_CREATE);
}else{
mContext.unbindService(mServiceConnection);
}
}
}
第五步:修改AndroidManifest.xml代码(将我们新建的MyService注册进去如下代码第14行:)
view plaincopy to clipboardprint?
01.<?xml version="1.0" encoding="utf-8"?>
02.<manifest xmlns:android="http://schemas.android.com/apk/res/android"
03. package="com.tutor.servicedemo"
04. android:versionCode="1"
05. android:versionName="1.0">
06. <application android:icon="@drawable/icon" android:label="@string/app_name">
07. <activity android:name=".ServiceDemo"
08. android:label="@string/app_name">
09. <intent-filter>
10. <action android:name="android.intent.action.MAIN" />
11. <category android:name="android.intent.category.LAUNCHER" />
12. </intent-filter>
13. </activity>
14. <service android:name=".MyService" android:exported="true"></service>
15. </application>
16. <uses-sdk android:minSdkVersion="7" />
17.</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tutor.servicedemo"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ServiceDemo"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyService" android:exported="true"></service>
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
第六步:执行上述工程,效果图如下:
点击startServie按钮时先后执行了Service中onCreate()->onStart()这两个方法,打开Logcat视窗效果如下图:
我们这时可以按HOME键进入Settings(设置)->Applications(应用)->Running Services(正在运行的服务)看一下我们新启动了一个服务,效果如下:
点击stopService按钮时,Service则执行了onDestroy()方法,效果图如下所示:
这时候我们再次点击startService按钮,然后点击bindService按钮(通常bindService都是bind已经启动的Service),我们看一下Service执行了IBinder()方法,以及TextView的值也有所变化了,如下两张图所示:
最后点击unbindService按钮,则Service执行了onUnbind()方法,如下图所示:
Ok,今天就先讲到这里了,谢谢大家关注
Service概念及用途:
Android中的服务,它与Activity不同,它是不能与用户交互的,不能自己启动的,运行在后台的程序,如果我们退出应用时,Service进程并没有结束,它仍然在后台运行,那我们什么时候会用到Service呢?比如我们播放音乐的时候,有可能想边听音乐边干些其他事情,当我们退出播放音乐的应用,如果不用Service,我们就听不到歌了,所以这时候就得用到Service了,又比如当我们一个应用的数据是通过网络获取的,不同时间(一段时间)的数据是不同的这时候我们可以用Service在后台定时更新,而不用每打开应用的时候在去获取。
Service生命周期 :
Android Service的生命周期并不像Activity那么复杂,它只继承了onCreate(),onStart(),onDestroy()三个方法,当我们第一次启动Service时,先后调用了onCreate(),onStart()这两个方法,当停止Service时,则执行onDestroy()方法,这里需要注意的是,如果Service已经启动了,当我们再次启动Service时,不会在执行onCreate()方法,而是直接执行onStart()方法,具体的可以看下面的实例。
Service与Activity通信:
Service后端的数据最终还是要呈现在前端Activity之上的,因为启动Service时,系统会重新开启一个新的进程,这就涉及到不同进程间通信的问题了(AIDL)这一节我不作过多描述,当我们想获取启动的Service实例时,我们可以用到bindService和onBindService方法,它们分别执行了Service中IBinder()和onUnbind()方法。
为了让大家 更容易理解,我写了一个简单的Demo,大家可以模仿着我,一步一步的来。
第一步:新建一个Android工程,我这里命名为ServiceDemo.
第二步:修改main.xml代码,我这里增加了四个按钮,代码如下:
view plaincopy to clipboardprint?
01.<?xml version="1.0" encoding="utf-8"?>
02.<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
03. android:orientation="vertical"
04. android:layout_width="fill_parent"
05. android:layout_height="fill_parent"
06. >
07. <TextView
08. android:id="@+id/text"
09. android:layout_width="fill_parent"
10. android:layout_height="wrap_content"
11. android:text="@string/hello"
12. />
13. <Button
14. android:id="@+id/startservice"
15. android:layout_width="fill_parent"
16. android:layout_height="wrap_content"
17. android:text="startService"
18. />
19. <Button
20. android:id="@+id/stopservice"
21. android:layout_width="fill_parent"
22. android:layout_height="wrap_content"
23. android:text="stopService"
24. />
25. <Button
26. android:id="@+id/bindservice"
27. android:layout_width="fill_parent"
28. android:layout_height="wrap_content"
29. android:text="bindService"
30. />
31. <Button
32. android:id="@+id/unbindservice"
33. android:layout_width="fill_parent"
34. android:layout_height="wrap_content"
35. android:text="unbindService"
36. />
37.</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<Button
android:id="@+id/startservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="startService"
/>
<Button
android:id="@+id/stopservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="stopService"
/>
<Button
android:id="@+id/bindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="bindService"
/>
<Button
android:id="@+id/unbindservice"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="unbindService"
/>
</LinearLayout>
第三步:新建一个Service,命名为MyService.java代码如下:
view plaincopy to clipboardprint?
01.package com.tutor.servicedemo;
02.import android.app.Service;
03.import android.content.Intent;
04.import android.os.Binder;
05.import android.os.IBinder;
06.import android.text.format.Time;
07.import android.util.Log;
08.public class MyService extends Service {
09. //定义个一个Tag标签
10. private static final String TAG = "MyService";
11. //这里定义吧一个Binder类,用在onBind()有方法里,这样Activity那边可以获取到
12. private MyBinder mBinder = new MyBinder();
13. @Override
14. public IBinder onBind(Intent intent) {
15. Log.e(TAG, "start IBinder~~~");
16. return mBinder;
17. }
18. @Override
19. public void onCreate() {
20. Log.e(TAG, "start onCreate~~~");
21. super.onCreate();
22. }
23.
24. @Override
25. public void onStart(Intent intent, int startId) {
26. Log.e(TAG, "start onStart~~~");
27. super.onStart(intent, startId);
28. }
29.
30. @Override
31. public void onDestroy() {
32. Log.e(TAG, "start onDestroy~~~");
33. super.onDestroy();
34. }
35.
36.
37. @Override
38. public boolean onUnbind(Intent intent) {
39. Log.e(TAG, "start onUnbind~~~");
40. return super.onUnbind(intent);
41. }
42.
43. //这里我写了一个获取当前时间的函数,不过没有格式化就先这么着吧
44. public String getSystemTime(){
45.
46. Time t = new Time();
47. t.setToNow();
48. return t.toString();
49. }
50.
51. public class MyBinder extends Binder{
52. MyService getService()
53. {
54. return MyService.this;
55. }
56. }
57.}
package com.tutor.servicedemo;
import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.text.format.Time;
import android.util.Log;
public class MyService extends Service {
//定义个一个Tag标签
private static final String TAG = "MyService";
//这里定义吧一个Binder类,用在onBind()有方法里,这样Activity那边可以获取到
private MyBinder mBinder = new MyBinder();
@Override
public IBinder onBind(Intent intent) {
Log.e(TAG, "start IBinder~~~");
return mBinder;
}
@Override
public void onCreate() {
Log.e(TAG, "start onCreate~~~");
super.onCreate();
}
@Override
public void onStart(Intent intent, int startId) {
Log.e(TAG, "start onStart~~~");
super.onStart(intent, startId);
}
@Override
public void onDestroy() {
Log.e(TAG, "start onDestroy~~~");
super.onDestroy();
}
@Override
public boolean onUnbind(Intent intent) {
Log.e(TAG, "start onUnbind~~~");
return super.onUnbind(intent);
}
//这里我写了一个获取当前时间的函数,不过没有格式化就先这么着吧
public String getSystemTime(){
Time t = new Time();
t.setToNow();
return t.toString();
}
public class MyBinder extends Binder{
MyService getService()
{
return MyService.this;
}
}
}
第四步:修改ServiceDemo.java,代码如下:
view plaincopy to clipboardprint?
01.package com.tutor.servicedemo;
02.import android.app.Activity;
03.import android.content.ComponentName;
04.import android.content.Context;
05.import android.content.Intent;
06.import android.content.ServiceConnection;
07.import android.os.Bundle;
08.import android.os.IBinder;
09.import android.view.View;
10.import android.view.View.OnClickListener;
11.import android.widget.Button;
12.import android.widget.TextView;
13.public class ServiceDemo extends Activity implements OnClickListener{
14.
15. private MyService mMyService;
16. private TextView mTextView;
17. private Button startServiceButton;
18. private Button stopServiceButton;
19. private Button bindServiceButton;
20. private Button unbindServiceButton;
21. private Context mContext;
22.
23. //这里需要用到ServiceConnection在Context.bindService和context.unBindService()里用到
24. private ServiceConnection mServiceConnection = new ServiceConnection() {
25. //当我bindService时,让TextView显示MyService里getSystemTime()方法的返回值
26. public void onServiceConnected(ComponentName name, IBinder service) {
27. // TODO Auto-generated method stub
28. mMyService = ((MyService.MyBinder)service).getService();
29. mTextView.setText("I am frome Service :" + mMyService.getSystemTime());
30. }
31.
32. public void onServiceDisconnected(ComponentName name) {
33. // TODO Auto-generated method stub
34.
35. }
36. };
37. public void onCreate(Bundle savedInstanceState) {
38. super.onCreate(savedInstanceState);
39. setContentView(R.layout.main);
40. setupViews();
41. }
42.
43. public void setupViews(){
44.
45. mContext = ServiceDemo.this;
46. mTextView = (TextView)findViewById(R.id.text);
47.
48.
49.
50. startServiceButton = (Button)findViewById(R.id.startservice);
51. stopServiceButton = (Button)findViewById(R.id.stopservice);
52. bindServiceButton = (Button)findViewById(R.id.bindservice);
53. unbindServiceButton = (Button)findViewById(R.id.unbindservice);
54.
55. startServiceButton.setOnClickListener(this);
56. stopServiceButton.setOnClickListener(this);
57. bindServiceButton.setOnClickListener(this);
58. unbindServiceButton.setOnClickListener(this);
59. }
60.
61. public void onClick(View v) {
62. // TODO Auto-generated method stub
63. if(v == startServiceButton){
64. Intent i = new Intent();
65. i.setClass(ServiceDemo.this, MyService.class);
66. mContext.startService(i);
67. }else if(v == stopServiceButton){
68. Intent i = new Intent();
69. i.setClass(ServiceDemo.this, MyService.class);
70. mContext.stopService(i);
71. }else if(v == bindServiceButton){
72. Intent i = new Intent();
73. i.setClass(ServiceDemo.this, MyService.class);
74. mContext.bindService(i, mServiceConnection, BIND_AUTO_CREATE);
75. }else{
76. mContext.unbindService(mServiceConnection);
77. }
78. }
79.
80.
81.
82.}
package com.tutor.servicedemo;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;
public class ServiceDemo extends Activity implements OnClickListener{
private MyService mMyService;
private TextView mTextView;
private Button startServiceButton;
private Button stopServiceButton;
private Button bindServiceButton;
private Button unbindServiceButton;
private Context mContext;
//这里需要用到ServiceConnection在Context.bindService和context.unBindService()里用到
private ServiceConnection mServiceConnection = new ServiceConnection() {
//当我bindService时,让TextView显示MyService里getSystemTime()方法的返回值
public void onServiceConnected(ComponentName name, IBinder service) {
// TODO Auto-generated method stub
mMyService = ((MyService.MyBinder)service).getService();
mTextView.setText("I am frome Service :" + mMyService.getSystemTime());
}
public void onServiceDisconnected(ComponentName name) {
// TODO Auto-generated method stub
}
};
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setupViews();
}
public void setupViews(){
mContext = ServiceDemo.this;
mTextView = (TextView)findViewById(R.id.text);
startServiceButton = (Button)findViewById(R.id.startservice);
stopServiceButton = (Button)findViewById(R.id.stopservice);
bindServiceButton = (Button)findViewById(R.id.bindservice);
unbindServiceButton = (Button)findViewById(R.id.unbindservice);
startServiceButton.setOnClickListener(this);
stopServiceButton.setOnClickListener(this);
bindServiceButton.setOnClickListener(this);
unbindServiceButton.setOnClickListener(this);
}
public void onClick(View v) {
// TODO Auto-generated method stub
if(v == startServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.startService(i);
}else if(v == stopServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.stopService(i);
}else if(v == bindServiceButton){
Intent i = new Intent();
i.setClass(ServiceDemo.this, MyService.class);
mContext.bindService(i, mServiceConnection, BIND_AUTO_CREATE);
}else{
mContext.unbindService(mServiceConnection);
}
}
}
第五步:修改AndroidManifest.xml代码(将我们新建的MyService注册进去如下代码第14行:)
view plaincopy to clipboardprint?
01.<?xml version="1.0" encoding="utf-8"?>
02.<manifest xmlns:android="http://schemas.android.com/apk/res/android"
03. package="com.tutor.servicedemo"
04. android:versionCode="1"
05. android:versionName="1.0">
06. <application android:icon="@drawable/icon" android:label="@string/app_name">
07. <activity android:name=".ServiceDemo"
08. android:label="@string/app_name">
09. <intent-filter>
10. <action android:name="android.intent.action.MAIN" />
11. <category android:name="android.intent.category.LAUNCHER" />
12. </intent-filter>
13. </activity>
14. <service android:name=".MyService" android:exported="true"></service>
15. </application>
16. <uses-sdk android:minSdkVersion="7" />
17.</manifest>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tutor.servicedemo"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ServiceDemo"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyService" android:exported="true"></service>
</application>
<uses-sdk android:minSdkVersion="7" />
</manifest>
第六步:执行上述工程,效果图如下:
点击startServie按钮时先后执行了Service中onCreate()->onStart()这两个方法,打开Logcat视窗效果如下图:
我们这时可以按HOME键进入Settings(设置)->Applications(应用)->Running Services(正在运行的服务)看一下我们新启动了一个服务,效果如下:
点击stopService按钮时,Service则执行了onDestroy()方法,效果图如下所示:
这时候我们再次点击startService按钮,然后点击bindService按钮(通常bindService都是bind已经启动的Service),我们看一下Service执行了IBinder()方法,以及TextView的值也有所变化了,如下两张图所示:
最后点击unbindService按钮,则Service执行了onUnbind()方法,如下图所示:
Ok,今天就先讲到这里了,谢谢大家关注
发表评论
-
Bitmap Drawable byte[] 三者之间的转换以及把数组存入数据库及提取数据重新组合
2012-03-06 11:21 787Bitmap Drawable byte[] 三者之间的转换以 ... -
Android Activity生命周期
2011-03-28 11:41 798大家好,今天给大家详解一下Android中Activity的生 ... -
Drawable使用入门
2011-03-25 16:03 1136一个让人赏心悦目的界面对软件来说非常重要,因此图形图像资源也显 ... -
Android 中的几个常用控件
2011-03-24 14:43 1022写道 1、RadioButton RadioButton ... -
android命令
2011-03-03 14:44 955写道 大家好,今天我 ... -
android学习的好网址
2011-02-22 10:10 935http://www.droidnova.com/and ... -
linux下操作android模拟器命令
2011-02-14 17:14 2141写道 1:列出模拟器类型 android list ... -
Activity生命周期
2011-02-08 19:59 880大家好,今天给大家详解一下Android中Activit ... -
Intent对象的简单使用
2011-02-08 00:38 616如果要转换的页面不只是背景,颜色或文字内容的不同,而是A ... -
setContentView的应用
2011-02-08 00:34 1517手机页面的转换set ... -
多个Activity之间的通信与数据传递的Bundle对象的使用
2011-02-08 00:18 1173在Activity 中调用另一个Activity ,但若 ... -
多个Activity之间的通信
2011-02-07 22:38 2061第一步:新建一个继承Activity的类,如:NewActiv ... -
共享数据功能使用-ContentProvider
2011-01-26 11:03 1208package it.date; import it ... -
外部应用访问
2011-01-11 16:29 1963使用context中的文件输出流它有四种模式: * ... -
使用SharedPreferences进行数据存储-
2011-01-11 11:07 999很多时候我们开发的软件需要向用户提供软件参数设置功能,例如我们 ... -
pull读取xml--android
2011-01-09 22:54 1943pull解析xml文件,和sax和dom一样 都可以脱离and ... -
dom读取xml文档---android
2011-01-09 22:26 1301除了可以使用 SAX解析XML文件,大家也可以使用熟悉的DOM ... -
数据保存到sd卡上
2011-01-05 17:22 9641 关键代码 package cn.lee.data; ... -
android读取功能
2011-01-05 16:03 9501 设计界面 <?xml version=" ... -
android的日志输出和单元测试
2010-12-31 17:52 1545日志输出 代替Syste ...
相关推荐
`onDestroy()`则在Service被停止时调用,标志着Service生命周期的结束。值得注意的是,Service的生命周期管理需要谨慎处理,以避免内存泄漏和不必要的资源消耗。 Service与Activity之间的通信是通过Binder机制实现...
使用`startService()`方法启动Service,这会导致Service生命周期中的`onStartCommand()`被调用。若要停止Service,可以调用`stopService()`。需要注意的是,即使调用了`stopService()`,Service可能并不会立即停止,...
总的来说,Android Service的生命周期管理是开发者必须掌握的关键技能,正确理解和使用Service生命周期能够确保应用的稳定性和效率,避免不必要的资源消耗。在开发过程中,我们还需要注意Service的权限管理,以及在...
本篇将深入探讨Activity和Service的生命周期以及如何利用Android Interface Definition Language (AIDL)进行进程间通信。 Activity是Android应用程序的用户界面,它负责与用户交互。Activity的生命周期分为几个关键...
以下是一个关于Service生命周期的详细解析,结合代码示例来阐述如何在Android中操作Service。 1. **Service生命周期概述** Service的生命周期主要包含以下几个阶段:onCreate()、onStartCommand()、onBind()、...
startService启动方式,只在activity中启动和销毁,和activity关系不大,即使antivity退出,服务任然运行,比如后台放音乐,对应生命周期: bindService启动方式,和activity绑定后,和activity共存亡,activity...
通过在这些方法中添加Log语句或者使用Android Studio的生命周期插件,可以清晰地观察到Activity状态的转换,从而更好地理解每个方法的作用和执行时机。 总的来说,这个“Android生命周期Demo”项目提供了一个实践...
总的来说,Android Service生命周期管理涉及到一系列的回调方法,通过这些方法,开发者能够精确控制服务的启动、运行和终止,同时确保服务在正确的时间释放资源。合理地使用服务能提高应用的效率和用户体验。在实际...
在Service运行过程中,可以利用生命周期方法确保资源的合理使用,例如在`onDestroy()`中释放计算过程中占用的资源。 标签中的“activity”提醒我们Service与Activity之间的通信。Service可以通过Binder、...
- 未绑定Activity的Service生命周期图显示了startService()启动的过程,而绑定Activity的Service生命周期图则展示了bindService()启动的过程,两者在生命周期上有显著差异。 理解并熟练掌握Service的生命周期及其...
Android Activity 生命周期是指 Activity 从创建到销毁的整个过程,该过程中会经历多个状态变化,每个状态变化都会触发相应的回调方法。理解 Activity 生命周期是 Android 开发的基础。 在 Android 中,Activity ...
- **Service生命周期**: - `onCreate()`:Service首次创建时调用。 - `onStartCommand()`或`onBind()`:根据Service类型(启动型或绑定型),在Service启动时调用。 - `onDestroy()`:Service销毁前调用。 - **...
1. **Android Profiler**:可以实时监控Activity的生命周期状态变化,同时分析内存、CPU和网络使用情况。 2. **Logcat**:通过打印日志,可以在控制台跟踪Activity的生命周期回调。 3. **Hierarchy Viewer**(现已...
6. **Service生命周期**: Service的生命周期包括`onCreate()`, `onStartCommand()`, `onBind()`, `onUnbind()`, `onDestroy()`等关键方法。在创建Service时,会调用`onCreate()`,接着如果是通过`startService()`...
总结来说,本演示涵盖了Android开发中的核心知识点,包括Activity的生命周期管理、Service的使用以及UI设计技巧,这些都是构建高效、用户友好的Android应用所必需的技能。通过对"android.test"文件的学习和实践,...
本实验报告将深入探讨Android应用程序,尤其是Activity、Service和Intent Receiver的生命周期,并解释如何正确管理这些组件以避免不必要的进程销毁。 首先,Android应用通常在独立的Linux进程中运行。当应用需要...
总之,Android Service是实现后台操作的重要工具,通过合理的使用和服务生命周期管理,可以为用户提供高效、稳定的后台服务。而 Binder 机制则让Service具备了跨进程通信的能力,极大地扩展了Service的应用场景。...
startService启动方式,只在activity中启动和销毁,和activity关系不大,即使antivity退出,服务任然运行,比如后台放音乐,对应生命周期: bindService启动方式,和activity绑定后,和activity共存亡,activity...
要实现一个有生命周期感知的网络请求框架,我们首先需要配置Retrofit2,定义一个包含所有网络接口的Service类,如`ApiService`,并使用Retrofit.Builder进行构建。接着,我们可以使用RxJava的Observable来包装...
总结来说,Intent是Android组件间通信的核心,它的生命周期与Activity紧密关联。理解和熟练运用Intent对于优化用户体验和提高代码效率至关重要。在开发中,我们应充分利用Intent的特性,实现高效、灵活的组件交互。