1.概述
在12.0进行定制化开发,会根据需要去掉recovery模式的一些选项 就是在device.cpp去掉一些选项就可以了文章来源:https://www.toymoban.com/news/detail-477912.html
2.去掉recovery模式UI页面的选项核心代码
bootable/recovery/recovery_ui/device.cpp
bootable/recovery/recovery_main.cpp
3.去掉recovery模式UI页面的选项的核心功能分析和实现
在12.0的recovery模块中,在device.cpp中 g_menu_actions 就是recovery用户操作选项集合,对应的事件处理
相对应的recovery模式选择事件,可以从这里去掉某些事件文章来源地址https://www.toymoban.com/news/detail-477912.html
diff --git a/bootable/recovery/recovery_ui/device.cpp b/bootable/recovery/recovery_ui/device.cpp
old mode 100644
new mode 100755
index e7ae1a3e19..567610a55d
--- a/bootable/recovery/recovery_ui/device.cpp
+++ b/bootable/recovery/recovery_ui/device.cpp
@@ -27,17 +27,7 @@
static std::vector<std::pair<std::string, Device::BuiltinAction>> g_menu_actions{
{ "Reboot system now", Device::REBOOT },
- { "Reboot to bootloader", Device::REBOOT_BOOTLOADER },
- { "Enter fastboot", Devic
到了这里,关于android 12.0去掉recovery模式UI页面的选项的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!