Back to project page interdroid-swan.
The source code is released under:
Copyright (c) 2008-2011 Vrije Universiteit, The Netherlands All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the follo...
If you think the Android project interdroid-swan 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 interdroid.swan.ui; //from ww w.j a v a 2s .co m import android.app.Activity; import android.os.Bundle; /** * Activity that launches the ContextService. */ public class LaunchService extends Activity { /* (non-Javadoc) * @see android.app.Activity#onCreate(android.os.Bundle) */ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Log.d("LaunchService", "thread: " + Thread.currentThread().getId() // + " - " + Thread.currentThread().getName() // + " Process: " + android.os.Process.myPid()); // startService(new Intent(ContextManager.CONTEXT_SERVICE)); finish(); } }