2012年7月15日

Android开发之Service

摘要: Android开发之Service1.创建、配置Servicepackage com.wwj;import android.app.Service;import android.content.Intent;import android.os.IBinder;public class FirstService extends Service{ //必须实现的方法 @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } // Service被创建时回调.. 阅读全文

posted @ 2012-07-15 16:45 1.曲待续 阅读(162) 评论(0) 推荐(0) 编辑

导航