gradlew build --tracktrace
gradlew build --stacktrace
-Xlint:deprecation 查看详细信息:某些输入文件使用或覆盖了已过时的 API。
-Xlint:unchecked 查看详细信息:某些输入文件使用了未经检查或不安全的操作。
gradlew build --warning-mode all
adb shell am start -W -S 完整包名/完整Main Launcher Activity名 冷启动时长
花里胡哨之隐藏状态栏和导航栏
adb shell wm overscan 0,-20,0,-110 左上右下移动指定距离
以下代码设置过后还能通过底部上滑或者顶部下滑唤出
adb shell settings put global policy_control immersive.full=* 全屏沉浸模式(包括状态栏和虚拟按键)
adb shell settings put global policy_control immersive.status=* 沉浸状态栏
adb shell settings put global policy_control immersive.navigation=* 沉浸虚拟按键
adb shell settings put global policy_control null 恢复正常模式
adb shell settings put global policy_control immersive.navigation=apps,-(xxxapp包名) 排除单独app 不隐藏
网友评论