summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/CustomAppWidget.java
blob: 1b4ed79c0b5df3a7cc48d9dd842b54c2be27848d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.android.launcher3;

public interface CustomAppWidget {
    public String getLabel();
    public int getPreviewImage();
    public int getIcon();
    public int getWidgetLayout();

    public int getSpanX();
    public int getSpanY();
    public int getMinSpanX();
    public int getMinSpanY();
    public int getResizeMode();
}