Because the latest MIUI beta / other parts of the UI will always show the NFC icon, so write how to hide this icon.
Preparation:
- USB cable
- computer adb
- Turn on USB debugging on mobile phones, some devices need to turn on USB debugging (safe mode), which is usually under the USB debugging switch
Steps:
adb shell settings put secure icon_blacklist nfc
nfc can be replaced with the following content, if there are more than one, it can be used and divided.
icon | Icon description |
---|---|
volume | mute/vibrate icon |
location | Locate icon |
speakerphone | microphone in use icon |
wifi | wifi |
hotspot | hot spot |
alarm_clock | Alarm clock |
bluetooth | Bluetooth |
airplane | airplane mode |
headphone | earphone |
cast | Screen recording status |
nfc | nfc |
If you need to restore, you need to use:
adb shell settings put secure icon_blacklist null
Note 1: The above command will restore all icons at once
Note 2: If you need to block multiple icons, then you need to use the English comma “,” to separate the icon names and enter them at one time.
This article is reproduced from: https://sspai.com/post/73808
This site is for inclusion only, and the copyright belongs to the original author.