首页 > 其他 > 详细

09 Service_01

时间:2014-04-30 00:09:40      阅读:455      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
package com.szy.service;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class ExampleService extends Service
{
    private static final String TAG="ExampleService";
    
    @Override
    public void onCreate()
    {
        Log.i(TAG, "ExampleService-->onCreate");
        super.onCreate();
    }

    @Override
    public void onStart(Intent intent, int startId)
    {
        // TODO Auto-generated method stub
        super.onStart(intent, startId);
    }

    @Override
    public void onDestroy()
    {
        Log.i(TAG, "ExampleService-->onDestroy");
        super.onDestroy();
    }

    @Override
    public int onStartCommand(Intent intent, int flags, int startId)
    {
        Log.i(TAG, "ExampleService-->onStartCommand");
        return START_NOT_STICKY;
    }

    @Override
    public IBinder onBind(Intent intent)
    {
        return null;
    }

}
bubuko.com,布布扣
  1. Intent intent=new Intent(MainActivity.this, ExampleService.class);
    <service android:name=".ExampleService" />
  2. startService(intent);
      onCreat();
      onStartCommand(Intent intent, int flags, int startId)
  3. stopService(intent);
      onDestroy();
      

09 Service_01,布布扣,bubuko.com

09 Service_01

原文:http://www.cnblogs.com/cliffhuang/p/3696940.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!