首页 > 其他分享 >ADB 关闭手机NFC等图标

ADB 关闭手机NFC等图标

时间:2023-01-08 15:13:18浏览次数:42  
标签:shell NFC nfc adb 关闭 ADB 图标

PC输入adb命令
在“Windows终端(管理员)”中输入以下命令即可关闭状态栏的NFC图标:

adb shell settings put secure icon_blacklist nfc
可关闭的图标汇总
将上述代码中的“nfc”替换为下表中的内容,则可关闭其他图标。若需同时关闭多个图标,则将它们的名称之前用英文的逗号分割即可。

名称 图标
nfc NFC图标
volume 静音 /震动图标
location 定位图标
speakerphone 麦克风使用中图标
wifi WIFI图标
hotspot 热点图标
alarm_clock 闹钟图标
bluetooth 蓝牙图标
airplane 飞行模式图标
headphone 耳机图标
cast 录屏状态图标
battery 电池图标
volte_call VoLTE(高清通话)图标
clock 时间显示

 

恢复状态栏被关闭的图标
输入下列命令,可一次性恢复所有被关闭掉的图标:

adb shell settings put secure icon_blacklist null

打开和关闭蓝牙BT
  adb root
  adb shell svc bluetooth enable
  adb shell svc bluetooth disable

打开和关闭NFC
  adb root
  adb shell svc nfc enable
  adb shell svc nfc disable

标签:shell,NFC,nfc,adb,关闭,ADB,图标
From: https://www.cnblogs.com/xkdn/p/17034688.html

相关文章