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; // w ww .j a v a 2s . c o m import android.content.Intent; import android.util.Log; import android.widget.RemoteViewsService; public class AppListRemoteViewsService extends RemoteViewsService { private static final String TAG = "LettersRemoteViewsService"; @Override public RemoteViewsFactory onGetViewFactory(Intent intent) { Log.i(TAG, "In onGetViewFactory"); return new AppListViewFactory(getApplicationContext(), intent); } }