Back to project page AppSearchWidget.
The source code is released under:
Apache License
If you think the Android project AppSearchWidget 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.example.testwidget; /*from ww w .j ava2 s .c o m*/ import android.app.IntentService; import android.content.Intent; import android.util.Log; public class AppLaunchIntentService extends IntentService { private static String TAG = "Kuikk/AppLaunchIntentService"; public AppLaunchIntentService(String name) { super(name); } @Override protected void onHandleIntent(Intent intent) { Log.i(TAG, "Launching " + intent.getStringExtra(Constants.COMPONENT_NAME)); } }