PART 1
Android 旋转建议 (Rotate Suggestions) 功能自 Android 9 引入,当自动旋转关闭时转动屏幕后显示在导航栏。
但在 Android 11 上启用全局手势 (小白条) 后,此按钮会显示在屏幕上干扰视野。
可以通过更改门槛 Settings.Secure 值来关闭和开启该功能,可通过 adb shell 或 root 身份执行以下命令以关闭该功能:
settings put secure show_rotation_suggestions 0
若将值设为 1 则为开启该功能。
参见:https://source.android.com/devices/tech/display/rotate-suggestions
PART 2
Android 11 将 Wi-Fi 配置文件移动到了 /data/misc/apexdata/com.android.wifi/WifiConfigStore.xml
,通过创建符号链接(软链接),可以使过时的 Wi-Fi 密码查看/备份程序正确读取到(Android 8 以前 Wi-Fi 配置文件保存在 wpa_supplicant.conf),如果要使用硬链接,需要注意硬链接的对象不能是目录、也不能跨文件系统。
1. 手动创建(推荐使用 Root Explorer 和 Mixplorer,创建过程非常直观容易。)
2. 命令执行(若在 Termux 中执行建议使用 tsu 代替 su)
su -c ln -s /data/misc/apexdata/com.android.wifi/WifiConfigStore.xml /data/misc/wifi/WifiConfigStore.xml
或
su -c busybox ln -s /data/misc/apexdata/com.android.wifi/WifiConfigStore.xml /data/misc/wifi/WifiConfigStore.xml