Skip to content

setting panel

Carlyle-Lee edited this page Jul 5, 2020 · 1 revision

设置面板

img

  1. 展开方式

    • 修改Lens 启动模式
  2. 开关功能区

  • 开启或者关闭某个功能模块, Lens一级页面将会增加或者移除对应的模块。
  • 代码控制
    • 新增开关 : 通过传入的customJumpEntrance String 数组,添加自定义的开关。
    • 开关的开启,关闭状态设置
  LensUtil.buildConfig()
 .addCustomJumpEntrance(customJumpEntrance, new JumpAction())
 .enableActivityAnalyzer(true)
  1. 快捷跳转功能区。
  • 点击跳转到对应的界面。
  • 新增快捷跳转入口: customJumpEntrance String 数组,添加自定义的跳转。
    LensUtil.buildConfig()
      // customJumpEntrance: String[]
     .addCustomJumpEntrance(customJumpEntrance, new JumpAction())
Clone this wiki locally