09 Service_01

时间:2014-04-30 00:10:08   收藏:0   阅读:510
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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!