Back to project page Note.
The source code is released under:
MIT License
If you think the Android project Note 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.bq.widget; /*from w w w. ja v a 2 s. c o m*/ import org.bq.tool.ResourceParser; import android.appwidget.AppWidgetManager; import android.content.Context; import com.bq.note.R; public class NoteWidgetProvider_4x extends NoteWidgetProvider { @Override public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) { super.update(context, appWidgetManager, appWidgetIds); } protected int getLayoutId() { return R.layout.widget_4x; } @Override protected int getBgResourceId(int bgId) { return ResourceParser.WidgetBgResources.getWidget4xBgResource(bgId); } @Override protected int getWidgetType() { return 1; } }