码迷,mamicode.com
首页 > 其他好文 > 详细

09 Service_01

时间:2014-04-30 00:10:08      阅读:510      评论:0      收藏:0      [点我收藏+]

标签:des   android   com   http   blog   style   class   div   img   code   java   

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

标签:des   android   com   http   blog   style   class   div   img   code   java   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!