Alias

Monkey启动 adb shell monkey -p your.package.name --ignore-crashes --ignore-timeouts --ignore-security-exceptions --pct-syskeys 0 --pct-nav 1 -v --throttle 100 -s 200 执行的次数 2>d:/error.txt 1>d:/verbose.txt ...

发布 0 条评论

修改gradle配置进行源码打包 目录samples/sample-android/build.gradle里面compileMatrixWithSrc = true 打包Matrix源码到MavenLocal 在matrix\matrix\matrix-android目录下执行./gradlew publishToMavenLocal,初次打包所有模块会比较...

发布 0 条评论

函数映射表 配置位置,打包以后需要保留 matrix { trace { enable = true baseMethodMapFile = "${project.projectDir}/matrixTrace/methodMapping.txt" blackListFile = "${project.proj...

发布 0 条评论

Matrix 在最新版本的Matrix上,已经放弃以前的UIThreadMonitor,改用com.tencent.matrix.trace.tracer.FrameTracer来监听帧率 OnFrameMetricsAvailableListener 在 Android 7.0, 增加了一个 Api 可以方便的统计一个 Window 的 View 树...

发布 0 条评论

Choreographer 应用卡顿发生时提示 Choreographer Skipped 484 frames! The application may be doing too much work on its main thread. Displayed 新界面打开耗时 ActivityManager: Displayed smart.p0000/com.pmpd.interactivity...

发布 0 条评论

1、ClickableSpan与TextView点击冲突 在我们使用ClickableSpan的时候,需要配合MovementMethod才能实现,不过往往会导致整个TextView的点击事件都被拦截 movementMethod = LinkMovementMethod.getInstance() 解决方案,不使用LinkMove...

发布 0 条评论

此内容受密码保护。如需查阅,请在下列字段中输入您的密码。

发布 0 条评论

Apk打包流程 手动打包apk 打包环境Windows电脑,不过命令应该都是一致的,需要提前把\SDK\build-tools\33.0.1添加到环境变量,或者下面的命名直接使用全路径 1、切换到项目根目录 cd ManualBuildApk 2、编译资源文件 aapt2 compile...

发布 0 条评论

调用NotificationChannel.setSound()方法来设置/修改通知声音无效 先看下API注释 /** * Sets the sound that should be played for notifications posted to this channel and its * audio attributes. Notification channels with ...

发布 0 条评论