mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-18 18:28:20 +00:00
-> This change provides integration for widgets provided by the launcher package which can run arbitrary code. Change-Id: I6052da5c4afed7ee72e3b44d045b9c46f2d84c42
15 lines
340 B
Java
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();
|
|
}
|