Search bar Google on the main screen Android-smartphone is one of the most controversial interface elements. For some users it is convenient, as it provides quick access to search, but for others it becomes a source of irritation: it takes up space, interferes with widget configuration, and does not always match the desktop design. Unfortunately, manufacturers often make it non-removable by default, especially on smartphones with clean Android (for example, Pixel) or shells like One UI ot Samsung.

In this article we will look at all possible ways to remove the search bar - from simple (through launcher settings) to advanced (with using ADB or third-party utilities). It is important to understand that some methods may require administrator rights or even unlocking the bootloader, so carefully assess the risks before changing system files. If you are using non-standard firmware (for example LineageOS), some of the instructions may not work - in this case, refer to the documentation of your assembly.

Why is the Google search bar difficult to remove?

It's about contracts between Google and smartphone manufacturers. According to certification agreements Google Mobile Services (GMS), devices with pre-installed Play Market are required to include key company services in the interface, including the search bar. This applies to:

  • ๐Ÿ“ฑ Google Pixel (all models)
  • ๐Ÿค– Smartphones with clean Android One (Nokia, Motorola, Xiaomi Mi A)
  • ๐ŸŒ Devices with shells where the search is integrated into the system launcher (Samsung One UI, OPPO ColorOS)

Even if you delete the widget manually, it may appear again after updating Google App or resetting the launcher settings. Some manufacturers (for example, Samsung) allow you to hide the line through the settings, but it is impossible to completely remove it without root access.

โš ๏ธ Attention: On devices with Android 12+ and newer versions Google App some methods (for example, disabling via ADB) may stop working due to tightened security policies. Before using, check the relevance of the method on your model.

Method 1: Removal through the launcher settings (without root)

The safest method is to use built-in launcher options. It is suitable for most smartphones, but does not guarantee 100% results on all firmware.

For the standard launcher Android (Pixel, Android One):

  1. Press and hold the search bar on the main screen.
  2. In the menu that appears, select Delete or Remove from screen (trash icon).
  3. If the option is not available, drag the widget to the top of the screen (area Delete).

For skins Samsung One UI, Xiaomi MIUI, Huawei EMUI:

  • ๐Ÿ”ง Press an empty space on the main screen โ†’ Screen settings โ†’ Widgets.
  • ๐Ÿ” Find widget Google Search and disable it.
  • ๐Ÿ“ฑ On Samsung you may need to disable Google Discover in the launcher settings.

If the widget is not is deleted, try reset the launcher settings:

Settings โ†’ Applications โ†’ Launcher (for example, "Pixel Launcher") โ†’ Storage โ†’ Clear data

โ˜‘๏ธ Preparing to delete the widget

Done: 0 / 3

Method 2: Disabling through Google App settings

In some cases, the search bar can be hidden by changing the settings of the application itself GoogleThis method works on Android 10โ€“13 and does not require root access.

Instructions:

  1. Open the application Google (letter icon G).
  2. Tap on the profile avatar โ†’ Settings โ†’ General.
  3. Find the option Search on the main screen or Search widget and turn it off.
  4. Restart your smartphone.

If there is no such option, try an alternative path:

Settings โ†’ Applications โ†’ Google โ†’ Permissions โ†’ Disable "Display on top of other windows"
โš ๏ธ Attention: On some devices (for example, Pixel 6/7), disabling this permission may lead to malfunctions Google Assistant. If after the changes you have problems with voice search, return the permission back.
What to do if the line returns after the update?

After the update Google App the search bar may appear again. To avoid this, disable automatic application updates. in Play Market or use ADB to block updates.

Method 3: Using a third-party launcher

If standard methods do not work, the most reliable way is to install an alternative launcher. This will not only remove the search bar, but also completely customize it. interface.

The best launchers without a forced search line:

  • ๐ŸŽจ Nova Launcher (paid version allows you to hide the search completely)
  • โšก Lawnchair (open source, supports gestures)
  • ๐Ÿ”„ Microsoft Launcher (you can disable the search Bing in settings)
  • ๐Ÿ“ฑ Apex Launcher (lightweight, with flexible settings)

How to set up Nova Launcher:

  1. Install Nova Launcher from Play Market.
  2. Press an empty space on the screen โ†’ Settings โ†’ Dock.
  3. Disable the option Show search bar.
  4. In section Applications and widgets delete widget Google Search.
Launcher Supports hiding search Requires Premium? Compatible with Android 14
Nova Launcher Yes (completely) For some functions Yes
Lawnchair Yes No Yes
Microsoft Launcher Partially (can be replaced on Bing) No Yes
Action Launcher Yes Yes Yes
๐Ÿ“Š What launcher do you use?
Standard (from the manufacturer)
Nova Launcher
Lawnchair
Microsoft Launcher
Other

Method 4: Removal via ADB (for experienced users)

If you are ready for more radical measures, you can disable the search bar using ADB (Android Debug Bridge). This method does not require root access, but will require connecting the smartphone to the computer.

What you will need:

  • ๐Ÿ–ฅ๏ธ A computer with installed ADB and drivers for your smartphone.
  • ๐Ÿ“ฑ Enabled debugging USB (Settings โ†’ About phone โ†’ Build number (7 taps) โ†’ For developers โ†’ USB debugging).
  • ๐Ÿ”Œ Cable USB-Type C (preferably original).

Instructions:

1. Connect your smartphone to the PC and confirm debugging on the device screen.

2. Open the command line (Windows) or terminal (macOS/Linux) and enter:

adb shell pm hide com.google.android.googlequicksearchbox

3. If the command did not work, try:

adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox

4. Restart your smartphone.

โš ๏ธ Attention: The Android 11+ command pm hide may not work due to restrictions Work Profile. In this case, you will need to use ADB AppControl or other utilities to force a shutdown.

After using this command, search string will disappear, but some functions may stop working Google Assistant (for example, voice search from the main screen). To return everything back, run:

adb shell pm uninstall --user 0 com.google.android.googlequicksearchbox
๐Ÿ’ก

If ADB does not recognize the device, try reinstalling the drivers or using wireless debugging (adb pair on Android 11+).

Method 5: Root access and system changes (for advanced)

If none of the previous methods worked, the most radical option remains - obtaining root access and editing system files. This method is suitable only for experienced users, as it carries risks:

  • ๐Ÿšจ Loss of warranty.
  • ๐Ÿ” Security breach (some banking applications will stop working).
  • ๐Ÿ”„ Possibility of "bricking" the device when error.

How to remove the search bar from root:

  1. Get root access using Magisk or SuperSU.
  2. Install a file manager with root support (for example, Root Explorer or Mixplorer).
  3. Go to the folder /system/priv-app/GoogleQuickSearchBox or /system/app/GoogleQuickSearchBox.
  4. Rename the file GoogleQuickSearchBox.apk to GoogleQuickSearchBox.apk.bak.
  5. Restart the device.

An alternative method is to freeze the application via Titanium Backup or App Quarantine. This is less risky than deleting files and allows you to easily get everything back.

โš ๏ธ Attention: On some firmware (for example, MIUI or ColorOS) system files are protected dm-verity. Changing them without disabling verification may result in a freeze on the logo when loading.

What to do if nothing helps?

If you have tried all the methods, but the search bar still appears, consider the following options:

  • ๐Ÿ“ฒ Reset to factory settings. Sometimes this helps if the problem is caused by a failure in the launcher settings. Don't forget to back up your data.
  • ๐Ÿ”„ Installing custom firmware. Firmware like LineageOS or Pixel Experience without GMS do not include a forced search string. However, this will require unlocking the bootloader and voiding the warranty.
  • ๐Ÿ› ๏ธ Using Xposed/LSposed. Modules like HideSearchBar or App Hider can hide the string at the system level, but require root or a virtual environment.

If your device is under warranty, it is better not to resort to radical methods. In some cases, manufacturers (for example, Samsung) may refuse service if they detect traces of root or modified system files.

๐Ÿ’ก

Before installing custom firmware, check its compatibility with your smartphone model on the forums XDA Developers or 4PDA.

FAQ: Frequently asked questions

Is it possible to remove the search bar without root and ADB?

Yes, in In most cases, it is enough to use a third-party launcher (for example, Nova Launcher) or disable the widget through the settings of the standard launcher. On some firmware (for example, MIUI), the line can be hidden in the theme settings.

Why did the search bar appear again after updating Android?

Updates Google App or the system launcher may reset settings. To avoid this, disable automatic updates Google App in Play Market or use ADB to block updates.

Will Google Assistant work after deleting the search bar?

If you simply deleted the widget or disabled it through the launcher settings, Google Assistant will continue to work, however, if you use ADB or root to disable com.google.android.googlequicksearchbox some functions. (for example, voice search from the main screen) may stop working.

Is it possible to return the search bar after deleting via ADB?

Yes, run the command:

adb shell cmd package install-existing com.google.android.googlequicksearchbox

or reinstall Google App from Play Market.

Why on my smartphone does not have the โ€œDelete widgetโ€ option when long pressed?

This means that the search bar is integrated into the system launcher and is not a removable widget. In this case, only a third-party launcher will help, ADB or root.