summaryrefslogtreecommitdiffstats
path: root/RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java')
-rw-r--r--RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java b/RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java
index a79791f6d..b3a147c19 100644
--- a/RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java
+++ b/RemoteFolder/src/com/android/launcher3/RemoteFolderManager.java
@@ -22,6 +22,15 @@ public class RemoteFolderManager {
public Folder createRemoteFolder(final FolderIcon icon, ViewGroup root) { return null; }
/**
+ * Get a drawable for the supplied item in the folder icon preview.
+ * @param items list of views in the folder.
+ * @param position index of icon to retreive.
+ * @return an icon to draw in the folder preview.
+ */
+ public Drawable getFolderIconDrawable(final ArrayList<View> items,
+ final int position) { return null; }
+
+ /**
* Called when Launcher finishes binding items from the model.
*/
public void bindFinished() { }
@@ -49,6 +58,11 @@ public class RemoteFolderManager {
public void onBindAddApps(ArrayList<AppInfo> apps) { }
/**
+ * Called when launcher loads apps and applies them to the drawer.
+ */
+ public void onSetApps() { }
+
+ /**
* Called when the info icon is clicked
*/
public void onInfoIconClicked() { }