summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher2/Launcher.java
diff options
context:
space:
mode:
authorRomain Guy <romainguy@android.com>2009-11-12 17:39:34 -0800
committerRomain Guy <romainguy@android.com>2009-11-12 18:38:17 -0800
commitf2826c7e2131ad9d81810b4bd7e3f0b120bbc97c (patch)
tree35cf5c129e514b303c9166582f6aee5a9750f36e /src/com/android/launcher2/Launcher.java
parente26d9fc2876bec60d5fb09c58efaa715ef6ab2fb (diff)
downloadandroid_packages_apps_Trebuchet-f2826c7e2131ad9d81810b4bd7e3f0b120bbc97c.tar.gz
android_packages_apps_Trebuchet-f2826c7e2131ad9d81810b4bd7e3f0b120bbc97c.tar.bz2
android_packages_apps_Trebuchet-f2826c7e2131ad9d81810b4bd7e3f0b120bbc97c.zip
Remove "Configure..." option from wallpaper chooser.
Change-Id: Iae9719dc3197ea0ee8e7637456b9d76d9ce8622b
Diffstat (limited to 'src/com/android/launcher2/Launcher.java')
-rw-r--r--src/com/android/launcher2/Launcher.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index 6ca46243f..c04176f13 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -22,7 +22,6 @@ import android.app.Dialog;
import android.app.ISearchManager;
import android.app.SearchManager;
import android.app.StatusBarManager;
-import android.app.WallpaperInfo;
import android.app.WallpaperManager;
import android.content.ActivityNotFoundException;
import android.content.BroadcastReceiver;
@@ -34,7 +33,6 @@ import android.content.Intent;
import android.content.Intent.ShortcutIconResource;
import android.content.IntentFilter;
import android.content.pm.ActivityInfo;
-import android.content.pm.LabeledIntent;
import android.content.pm.PackageManager;
import android.content.pm.PackageManager.NameNotFoundException;
import android.content.res.Configuration;
@@ -1288,15 +1286,17 @@ public final class Launcher extends Activity
final Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER);
Intent chooser = Intent.createChooser(pickWallpaper,
getText(R.string.chooser_wallpaper));
- WallpaperManager wm = (WallpaperManager)
- getSystemService(Context.WALLPAPER_SERVICE);
- WallpaperInfo wi = wm.getWallpaperInfo();
- if (wi != null && wi.getSettingsActivity() != null) {
- LabeledIntent li = new LabeledIntent(getPackageName(),
- R.string.configure_wallpaper, 0);
- li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
- chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
- }
+ // NOTE: Adds a configure option to the chooser if the wallpaper supports it
+ // Removed in Eclair MR1
+// WallpaperManager wm = (WallpaperManager)
+// getSystemService(Context.WALLPAPER_SERVICE);
+// WallpaperInfo wi = wm.getWallpaperInfo();
+// if (wi != null && wi.getSettingsActivity() != null) {
+// LabeledIntent li = new LabeledIntent(getPackageName(),
+// R.string.configure_wallpaper, 0);
+// li.setClassName(wi.getPackageName(), wi.getSettingsActivity());
+// chooser.putExtra(Intent.EXTRA_INITIAL_INTENTS, new Intent[] { li });
+// }
startActivityForResult(chooser, REQUEST_PICK_WALLPAPER);
}