summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnonymous Coward <nobody@android.com>2009-08-18 17:34:16 -0700
committerAnonymous Coward <nobody@android.com>2009-08-19 15:59:44 -0700
commitf2ad9adcf609a3f02092094871335f1fe39cad5e (patch)
tree994e88f02520dab00cdc180afef82babdd9b02f1
parentfacd2688208d47ad7c10971407a839eaaad44271 (diff)
downloadLauncher-f2ad9adcf609a3f02092094871335f1fe39cad5e.tar.gz
Remove the ability for the Google logo to hide itself based on the chosen
web search provider, as Google will be the only provider.
-rw-r--r--src/com/android/launcher/Search.java48
1 files changed, 6 insertions, 42 deletions
diff --git a/src/com/android/launcher/Search.java b/src/com/android/launcher/Search.java
index 8a7c352..b8fc472 100644
--- a/src/com/android/launcher/Search.java
+++ b/src/com/android/launcher/Search.java
@@ -75,9 +75,7 @@ public class Search extends LinearLayout
// For voice searching
private Intent mVoiceSearchIntent;
-
- private Drawable mGooglePlaceholder;
-
+
private SearchManager mSearchManager;
/**
@@ -299,10 +297,6 @@ public class Search extends LinearLayout
mSearchText = (TextView) findViewById(R.id.search_src_text);
mVoiceButton = (ImageButton) findViewById(R.id.search_voice_btn);
- mGooglePlaceholder = getContext().getResources().getDrawable(R.drawable.placeholder_google);
- mContext.registerReceiver(mBroadcastReceiver,
- new IntentFilter(SearchManager.INTENT_ACTION_SEARCH_SETTINGS_CHANGED));
-
mSearchText.setOnKeyListener(this);
mSearchText.setOnClickListener(this);
@@ -312,14 +306,17 @@ public class Search extends LinearLayout
mSearchText.setOnLongClickListener(this);
mVoiceButton.setOnLongClickListener(this);
+ // Set the placeholder text to be the Google logo within the search widget.
+ Drawable googlePlaceholder =
+ getContext().getResources().getDrawable(R.drawable.placeholder_google);
+ mSearchText.setCompoundDrawablesWithIntrinsicBounds(googlePlaceholder, null, null, null);
+
configureVoiceSearchButton();
- setUpTextField();
}
@Override
public void onDetachedFromWindow() {
super.onDetachedFromWindow();
- if (mBroadcastReceiver != null) getContext().unregisterReceiver(mBroadcastReceiver);
}
/**
@@ -341,45 +338,12 @@ public class Search extends LinearLayout
}
/**
- * Sets up the look of the text field. If Google is the chosen search provider, includes
- * a Google logo as placeholder.
- */
- private void setUpTextField() {
- boolean showGooglePlaceholder = false;
- SearchableInfo webSearchSearchable = mSearchManager.getDefaultSearchableForWebSearch();
- if (webSearchSearchable != null) {
- ComponentName webSearchComponent = webSearchSearchable.getSearchActivity();
- if (webSearchComponent != null) {
- String componentString = webSearchComponent.flattenToShortString();
- if (Searchables.ENHANCED_GOOGLE_SEARCH_COMPONENT_NAME.equals(componentString) ||
- Searchables.GOOGLE_SEARCH_COMPONENT_NAME.equals(componentString)) {
- showGooglePlaceholder = true;
- }
- }
- }
-
- mSearchText.setCompoundDrawablesWithIntrinsicBounds(
- showGooglePlaceholder ? mGooglePlaceholder : null, null, null, null);
- }
-
- /**
* Sets the {@link Launcher} that this gadget will call on to display the search dialog.
*/
public void setLauncher(Launcher launcher) {
mLauncher = launcher;
}
- // Broadcast receiver for web search provider change notifications
- private BroadcastReceiver mBroadcastReceiver = new BroadcastReceiver() {
- @Override
- public void onReceive(Context context, Intent intent) {
- String action = intent.getAction();
- if (SearchManager.INTENT_ACTION_SEARCH_SETTINGS_CHANGED.equals(action)) {
- setUpTextField();
- }
- }
- };
-
/**
* Moves the view to the top left corner of its parent.
*/