Back to project page Floata-Client.
The source code is released under:
GNU General Public License
If you think the Android project Floata-Client 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 pidevelopers.floata; /* w ww . j av a 2 s . com*/ import android.app.Service; import android.content.Intent; import android.content.SharedPreferences; import android.os.IBinder; public class ServiceL extends Service { static SharedPreferences spfs; @Override public IBinder onBind(Intent intent) { // TODO Auto-generated method stub return null; } public void onCreate() { super.onCreate(); } }