【3D技术宅公社】XR数字艺术论坛  XR技术讨论 XR互动电影 定格动画

 找回密码
 立即注册

QQ登录

只需一步,快速开始

调查问卷
论坛即将给大家带来全新的技术服务,面向三围图形学、游戏、动画的全新服务论坛升级为UTF8版本后,中文用户名和用户密码中有中文的都无法登陆,请发邮件到324007255(at)QQ.com联系手动修改密码

3D技术论坛将以计算机图形学为核心,面向教育 推出国内的三维教育引擎该项目在持续研发当中,感谢大家的关注。

查看: 1628|回复: 0

Android开发中后台的Service服务探索

[复制链接]
发表于 2013-1-29 23:55:09 | 显示全部楼层 |阅读模式
最近在编写一个基于Android 2.1 的手机应用程序,其中的一个功能是利用Google 的地图API接口实现足迹追踪,整个程序设计大概分为三个部分,UI设计、GoogleMapAPI接口调用以及后台Service所做的数据的采集和传输以及和服务器的通讯。
Android的UI设计和JAVA、MFC、C#.NET有些不同,毕竟是手持设备,硬件资源的限制要求它用尽量轻便的代码框架去完成功能,Android的用户界面是用XML来进行布局和管理的,支持直接拖拽,但是效果并不是很好。它的主活动界面是在main.xml中编写的,在这里可以定义一些按钮啊、文本框什么的。GoogleMapAPI的用法网上有很多教程,首先要去申请一个KEY,然后才能去调用API得到想要的数据,我们这里要获得GPS的实时数据,所以要用到 LocationListeninger 和 LocationManager 两个类,绘制地图可以调用Mapview类,里面有很多操作地图的方法,类似放大缩小、拖拽描点等都可以调用函数直接实现。
主要来说一下后台服务的编写吧,在Android中Service是用来进行后台数据处理的东西,类似于Linux下的后台进程,就是当前活动创建的Service在这个活动窗口退出后Service还是继续运行的,我们要对用户的行动进行跟踪,就要长时间采集GPS发送过来的地理位置信息,这样的东西写成一个Service再合适不过了。自己编写的Service要继承系统的Service类,然后Override其中的方法。
  1. package server.track;

  2. import java.util.Calendar;
  3. import android.app.Service;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.location.Location;
  7. import android.location.LocationListener;
  8. import android.location.LocationManager;
  9. import android.os.Bundle;
  10. import android.os.IBinder;
  11. import android.util.Log;
  12. import android.widget.Toast;

  13. public class Track extends Service {
  14.         private static final String TAG = "Track";

  15.         private LocationManager lm;
  16.         private LocationListener locationListener;
  17.         final SDRW filerecord = new SDRW();
  18.         private String record ;
  19.         private String length;
  20.         private int headposition;
  21.         @Override
  22.         public IBinder onBind(Intent arg0) {
  23. //                Log.d(TAG, "onBind.");
  24.                 return null;
  25.         }
  26.        
  27.         public void onStart(Intent intent, int startId) {  
  28.                 Log.d(TAG, "onStart.");
  29.                 Toast.makeText(getApplicationContext(), "启动服务",Toast.LENGTH_SHORT).show();
  30.         super.onStart(intent, startId);
  31. //        startDb();
  32. //                Bundle extras = intent.getExtras();
  33. //                if (extras != null) {
  34. //                        track_id = extras.getInt(LocateDbAdapter.TRACKID);
  35. //                }
  36. //                Log.d(TAG, "track_id =" + track_id);
  37.                 // ---use the LocationManager class to obtain GPS locations---
  38.                 Calendar calendar = Calendar.getInstance();
  39.                 headposition = 5;
  40.                 record = "head:                                                                                 \r\n";
  41.                 filerecord.write(record);
  42.                 record = "user:"+"Yastand\r\n"+"date:"+calendar.get(Calendar.YEAR) + "-" +calendar.get(Calendar.MONTH) + "-" +  calendar.get(Calendar.DAY_OF_MONTH) + " "
  43.                 + calendar.get(Calendar.HOUR_OF_DAY) + ":"
  44.                 + calendar.get(Calendar.MINUTE) + ":"  + calendar.get(Calendar.SECOND)+"\r\n";
  45.                 filerecord.write(record);
  46.                 length = String.valueOf(record.length())+" ";
  47.                 filerecord.writehead(length,headposition);
  48.                 headposition += length.length();
  49.                 lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
  50.                 locationListener = new MyLocationListener();
  51.                 lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0,locationListener);
  52.     }
  53.        
  54.        

  55.     public void onDestroy() {
  56.             Toast.makeText(this, "service done", Toast.LENGTH_SHORT).show();
  57.             super.onDestroy();
  58.             lm.removeUpdates(locationListener);
  59. //        stopService(new Intent("Context.LOCATION_SERVICE"));
  60.             stopSelf();
  61.     }

  62.     protected class MyLocationListener implements LocationListener {

  63.                 @Override
  64.                 public void onLocationChanged(Location loc) {
  65.                         Log.d(TAG, "MyLocationListener::onLocationChanged..");
  66. /*                        if (loc != null) {
  67.                                 // //////////
  68.                                 if(mlcDbHelper == null){
  69.                                         mlcDbHelper.open();
  70.                                 }
  71.                                 mlcDbHelper.createLocate(track_id,  loc.getLongitude(),loc.getLatitude(), loc.getAltitude());
  72.                         }
  73.                         */
  74.                         record = "GPS:"+" lon:"+String.valueOf(loc.getLongitude())+" lat:"+String.valueOf(loc.getLatitude())+" alt:"+String.valueOf(loc.getAltitude())+"\r\n";
  75.                         if (loc != null)
  76.                         {
  77.                         //        filepoint.write(edit1.getText().toString());
  78.                                 filerecord.write(record);
  79.                         }
  80.                 }


  81.                 @Override
  82.                 public void onProviderDisabled(String provider) {
  83.                         Toast.makeText(
  84.                                         getBaseContext(),
  85.                                         "ProviderDisabled.",
  86.                                         Toast.LENGTH_SHORT).show();                }

  87.                 @Override
  88.                 public void onProviderEnabled(String provider) {
  89.                         Toast.makeText(
  90.                                         getBaseContext(),
  91.                                         "ProviderEnabled,provider:"+provider,
  92.                                         Toast.LENGTH_SHORT).show();                }

  93.                 @Override
  94.                 public void onStatusChanged(String provider, int status, Bundle extras) {
  95.                         // TODO Auto-generated method stub
  96.                 }
  97.         }

  98.        
  99. }
复制代码
要开启这个Service可以用
  1. Intent i = new Intent("server.track.START_TRACK_SERVICE");
  2.                 startService(i);
复制代码
执行这句话后,Service类首先去找Create函数,再运行Onstart函数,一个Service就成功的运行了,但是退出当前程序这个操作对这个后台运行的Service并没有什么影响,那么怎样结束这个Service呢?可以这样
  1. stopService(new Intent("server.track.START_TRACK_SERVICE"));
复制代码
执行这句话,系统就会调用Service实例的onDestroy()函数,到这里本以为万事大吉了,结果发现调用stopService之后GPS发送回来的数据还是源源不断的写入到文件中,原来在onDestroy()函数中必须显示的把Service实例中调用的线程都结束之后才能停止,在我们的Service中调用的LocationLinstener是这问题的关键,必须在onDestroy()中结束它运行的线程
  1. public void onDestroy() {
  2.             Toast.makeText(this, "service done", Toast.LENGTH_SHORT).show();
  3.             super.onDestroy();
  4.             lm.removeUpdates(locationListener);
  5. //        stopService(new Intent("Context.LOCATION_SERVICE"));
  6.             stopSelf();
  7.     }
复制代码
ok了,调用这个函数之后后台运行的Service就自己终止了。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|3D数字艺术论坛 ( 沪ICP备14023054号 )

GMT+8, 2024-11-24 00:19

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表