Back to project page iSiteProyect.
The source code is released under:
Copyright (C) 2013 Plasty Grove <plasty.grove@gmail.com> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Softwar...
If you think the Android project iSiteProyect listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.iSiteProyect.Servicios; /* w w w . j a v a2 s. c o m*/ import android.app.Service; import android.content.Intent; import android.os.IBinder; import android.util.Log; public class MiServicio extends Service { @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub Log.d("Mi servicio"," Entro"); return null; } }