将活动绑定到服务

作者:追风剑情 发布于:2015-8-2 17:06 分类:Android

传递数据的一个更好的办法是直接将活动绑定到服务上,这样活动可以直接用服务的任何公共成员和方法。

活动

  1. package com.example.androidtest;
  2.  
  3. import java.net.MalformedURLException;
  4. import java.net.URL;
  5.  
  6. import android.app.Activity;
  7. import android.content.ComponentName;
  8. import android.content.Context;
  9. import android.content.Intent;
  10. import android.content.ServiceConnection;
  11. import android.os.Bundle;
  12. import android.os.IBinder;
  13. import android.util.Log;
  14. import android.view.View;
  15. import android.widget.Toast;
  16.  
  17. public class ServicesActivity2 extends Activity {
  18.  
  19. MyService2 serviceBinder;
  20. Intent i;
  21. @Override
  22. protected void onCreate(Bundle savedInstanceState) {
  23. super.onCreate(savedInstanceState);
  24. setContentView(R.layout.activity_services);
  25. }
  26. public void startService(View view){
  27. i = new Intent(ServicesActivity2.this, MyService2.class);
  28. bindService(i, connection, Context.BIND_AUTO_CREATE);
  29. }
  30. public void stopService(View view){
  31. stopService(new Intent(ServicesActivity2.this, MyService2.class));
  32. }
  33. //监控服务连接状态
  34. private ServiceConnection connection = new ServiceConnection(){
  35. //连接成功
  36. @Override
  37. public void onServiceConnected(ComponentName name, IBinder service) {
  38. // TODO Auto-generated method stub
  39. Toast.makeText(ServicesActivity2.this, "Service onServiceConnected", Toast.LENGTH_SHORT).show();
  40. serviceBinder = ((MyService2.MyBinder)service).getService();
  41. try {
  42. URL[] urls = new URL[] {
  43. new URL("http://www.amazon.com/somefile.pdf"),
  44. new URL("http://www.wrox.com/somefile.pdf"),
  45. new URL("http://www.google.com/somefile.pdf"),
  46. new URL("http://www.learn.com/somefile.pdf")
  47. };
  48. serviceBinder.urls = urls;
  49. }catch(MalformedURLException e){
  50. Log.d("AndroidTest", e.getMessage());
  51. }
  52. startService(i);
  53. }
  54. //连接断开
  55. @Override
  56. public void onServiceDisconnected(ComponentName name) {
  57. // TODO Auto-generated method stub
  58. Toast.makeText(ServicesActivity2.this, "Service onServiceDisconnected", Toast.LENGTH_SHORT).show();
  59. serviceBinder = null;
  60. }
  61. };
  62. }

服务

  1. package com.example.androidtest;
  2.  
  3. import java.net.URL;
  4.  
  5. import android.app.Service;
  6. import android.content.Intent;
  7. import android.os.AsyncTask;
  8. import android.os.Binder;
  9. import android.os.IBinder;
  10. import android.util.Log;
  11. import android.widget.Toast;
  12.  
  13. public class MyService2 extends Service {
  14. URL[] urls;
  15. private final IBinder binder = new MyBinder();
  16. //为了将活动绑定到一个服务,必须首先在服务中声明一个扩展Binder类的内部类。
  17. public class MyBinder extends Binder {
  18. MyService2 getService(){
  19. return MyService2.this;
  20. }
  21. }
  22.  
  23. @Override
  24. public IBinder onBind(Intent intent) {
  25. // TODO Auto-generated method stub
  26. return binder;
  27. }
  28. @Override
  29. public int onStartCommand(Intent intent, int flags, int startId){
  30. Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
  31. new DoBackgroundTask().execute(urls);
  32. return START_STICKY;
  33. }
  34.  
  35. @Override
  36. public void onDestroy(){
  37. super.onDestroy();
  38. Toast.makeText(this, "Service Destroyed", Toast.LENGTH_LONG).show();
  39. }
  40. private int DownLoadFile(URL url)
  41. {
  42. try{
  43. Thread.sleep(5000);//模拟文件下载
  44. }catch(InterruptedException e){
  45. Log.d("AndroidTest", e.getMessage());
  46. }
  47. return 100;//文件大小
  48. }
  49. private class DoBackgroundTask extends AsyncTask<URL, Integer, Long>
  50. {
  51. /**
  52. * 这个方法用于放置需要长时间运行的代码并在后台线程中执行。
  53. * @param progress 参数类型(Integer)由AsyncTask<>的第1个泛型参数类型定义
  54. * @return 返回类型(Long)由AsyncTask<>的第3个泛型参数类型定义
  55. */
  56. @Override
  57. protected Long doInBackground(URL... urls) {
  58. int count = urls.length;
  59. long totalBytesDownloaded = 0;
  60. for (int i=0; i<count; i++) {
  61. totalBytesDownloaded += DownLoadFile(urls[i]);
  62. //报告进度
  63. publishProgress((int) (((i+1)/(float)count)*100));
  64. }
  65. return totalBytesDownloaded;
  66. }
  67. /**
  68. * 这一方法在UI线程中启动并在调用publishProgress()方法时调用。
  69. * @param progress 参数类型(Integer)由AsyncTask<>的第2个泛型参数类型定义
  70. */
  71. protected void onProgressUpdate(Integer... progress)
  72. {
  73. String percent = String.valueOf(progress[0]) + "% downloaded";
  74. Log.d("AndroidTest", percent);
  75. Toast.makeText(getBaseContext(), percent, Toast.LENGTH_SHORT).show();
  76. }
  77. /**
  78. * 这一方法在UI线程中启动并在doInBackground()方法执行完毕后调用。
  79. * @param result 参数类型(Long)由AsyncTask<>的第3个泛型参数类型定义
  80. */
  81. protected void onPostExecute(Long result)
  82. {
  83. String str = "Downloaded "+result+" bytes";
  84. Toast.makeText(getBaseContext(), str, Toast.LENGTH_SHORT).show();
  85. //注意: 当后台线程执行完毕时,需要手动调用stopSelf()方法来停止服务
  86. //stopSelf()方法相当于调用stopService()方法来停止服务。
  87. stopSelf();
  88. }
  89. }
  90. }

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号