1 package com.android.launcher3;
2 
3 public interface CustomAppWidget {
getLabel()4     public String getLabel();
getPreviewImage()5     public int getPreviewImage();
getIcon()6     public int getIcon();
getWidgetLayout()7     public int getWidgetLayout();
8 
getSpanX()9     public int getSpanX();
getSpanY()10     public int getSpanY();
getMinSpanX()11     public int getMinSpanX();
getMinSpanY()12     public int getMinSpanY();
getResizeMode()13     public int getResizeMode();
14 }
15