blob: 1b4ed79c0b5df3a7cc48d9dd842b54c2be27848d [file] [log] [blame]
Adam Cohen59400422014-03-05 18:07:04 -08001package com.android.launcher3;
2
3public interface CustomAppWidget {
4 public String getLabel();
5 public int getPreviewImage();
6 public int getIcon();
7 public int getWidgetLayout();
8
9 public int getSpanX();
10 public int getSpanY();
11 public int getMinSpanX();
12 public int getMinSpanY();
13 public int getResizeMode();
14}