summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/FolderChooser.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/launcher2/FolderChooser.java')
-rw-r--r--src/com/android/launcher2/FolderChooser.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/com/android/launcher2/FolderChooser.java b/src/com/android/launcher2/FolderChooser.java
deleted file mode 100644
index b152ad5f5..000000000
--- a/src/com/android/launcher2/FolderChooser.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.android.launcher2;
-
-import com.android.launcher.R;
-
-import android.content.ComponentName;
-import android.content.Context;
-import android.content.Intent;
-import android.content.pm.ResolveInfo;
-import android.provider.LiveFolders;
-import android.util.AttributeSet;
-import android.view.View;
-import android.widget.AdapterView;
-
-public class FolderChooser extends HomeCustomizationItemGallery {
-
- public FolderChooser(Context context, AttributeSet attrs) {
- super(context, attrs);
- }
-
- public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
- // todo: this code sorta overlaps with other places
- ResolveInfo info = (ResolveInfo)getAdapter().getItem(position);
- mLauncher.prepareAddItemFromHomeCustomizationDrawer();
-
- Intent createFolderIntent = new Intent(LiveFolders.ACTION_CREATE_LIVE_FOLDER);
- if (info.labelRes == R.string.group_folder) {
- // Create app shortcuts is a special built-in case of shortcuts
- createFolderIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getContext().getString(R.string.group_folder));
- } else {
- ComponentName name = new ComponentName(info.activityInfo.packageName, info.activityInfo.name);
- createFolderIntent.setComponent(name);
- }
- mLauncher.addLiveFolder(createFolderIntent);
-
- return true;
- }
-}