详细描述Android服务解说

开放手机联盟的成立和 Android服务 的推出是对现状的重大改变,在带来初步效益之前,还需要不小的耐心和高昂的投入,谷歌将继续努力,让这些服务变得更好,同时也将添加更有吸引力的特性、应用和服务。

成都创新互联公司主要从事成都网站建设、成都网站制作、网页设计、企业做网站、公司建网站等业务。立足成都服务双鸭山,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108

一,Android服务中的Service与调用者在同一线程,所以要是耗时的操作要在Service中新开线程。
二,Android的Service中,主要是实现其onCreate,onStart, onDestroy,onBind,onUnBind几个函数,来实现我们所需要的功能。

简单的调可以在调用者对象中使用Context.startService来调用,以Intent为参数,当然,Intent搜索,匹配目标的方式与以前在《Intent使用》中方式一样。

下面来看一段例程:

 
 
 
  1. package test.pHello;
  2. import android.app.Activity;
  3. import android.content.ComponentName;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.content.ServiceConnection;
  7. import android.net.Uri;
  8. import android.os.Bundle;
  9. import android.os.IBinder;
  10. import android.view.Menu;
  11. import android.view.MenuItem;
  12. import android.widget.TextView;
  13. public class HelloActivity extends Activity { 
  14.  
  15.  ITestService mService = null;
  16.  ServiceConnection sconnection = new ServiceConnection()
  17.  {
  18.   public void onServiceConnected(ComponentName name, IBinder service)
  19.   {
  20.    mService  = (ITestService)service;
  21.    if (mService != null)
  22.    {
  23.     mService.showName();
  24.    }
  25.   }
  26.   public void onServiceDisconnected(ComponentName name) 
  27.   {   
  28.    
  29.   }
  30.  };
  31.  @Override
  32.  public boolean onCreateOptionsMenu(Menu menu) {
  33.   // TODO Auto-generated method stub
  34.   super.onCreateOptionsMenu(menu);
  35.   menu.add(0, Menu.FIRST+1, 1, "OpenActivity");
  36.   menu.add(0, Menu.FIRST+2, 2, "StartService");
  37.   menu.add(0, Menu.FIRST+3, 3, "StopService");
  38.   menu.add(0, Menu.FIRST+4, 4, "BindService");
  39.   return true;
  40.  }
  41.  @Override
  42.  public boolean onOptionsItemSelected(MenuItem item) {
  43.   // TODO Auto-generated method stub
  44.   super.onOptionsItemSelected(item);
  45.   switch(item.getItemId())
  46.   {
  47.   case Menu.FIRST + 1:
  48.   {
  49.    this.setTitle("Switch Activity");
  50.    Intent i = new Intent();   
  51.    i.setAction("test_action");  
  52.    if (Tools.isIntentAvailable(this,i))
  53.     this.startActivity(i);
  54.    else
  55.     this.setTitle("the Intent is unavailable!!!");
  56.    break;
  57.   }
  58.   case Menu.FIRST + 2:
  59.   {
  60.    this.setTitle("Start Service");
  61.    //Intent i = new Intent(this, TestService.class);
  62.    Intent i = new Intent();
  63.    i.setAction("start_service");
  64.    this.startService(i);
  65.    break;
  66.   }
  67.   case Menu.FIRST + 3:
  68.   {
  69.    this.setTitle("Stop Service");
  70.    Intent i = new Intent(this, TestService.class);
  71.    this.stopService(i);
  72.    break;
  73.   }
  74.   case Menu.FIRST + 4:
  75.   {
  76.    this.setTitle("Bind Service!");
  77.    Intent i = new Intent(this, TestService.class);
  78.    this.bindService(i, this.sconnection, Context.BIND_AUTO_CREATE);
  79.    
  80.    break;
  81.   }
  82.   }
  83.   return true;
  84.  }
  85.  @Override
  86.     public void onCreate(Bundle savedInstanceState) {
  87.         super.onCreate(savedInstanceState);       
  88.         this.setContentView(R.layout.main);   
  89.     }
  90. }

编译执行,你会发现,是先执行onCreate,然后再执行onBind,在调用者的Context.bindService返回时,ServiceConnection的OnConnected并没有马上被执行。Android服务远程绑定:上述绑定是在调用者与Service在同一个应用程序中的情况,如果分处在不同的程序中,那么,调用方式又是一另一种情况。我们来看一下。

本文名称:详细描述Android服务解说
链接URL:http://www.shufengxianlan.com/qtweb/news20/291620.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联