Files
lawnchair/src/com/android/launcher3/CustomAppWidget.java
Adam Cohen 5940042d39 Supporting custom widgets provided by launcher
-> This change provides integration for widgets provided by
   the launcher package which can run arbitrary code.

Change-Id: I6052da5c4afed7ee72e3b44d045b9c46f2d84c42
2014-12-05 16:18:41 -08:00

15 lines
340 B
Java

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();
}