在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):heimashi/debug_view_kotlin开源软件地址(OpenSource Url):https://github.com/heimashi/debug_view_kotlin开源编程语言(OpenSource Language):Kotlin 90.5%开源软件介绍(OpenSource Introduction):debug_view_kotlinDebug-View是用Kotlin实现的用于Android调试的浮层调试控制台,这个控制台会一直浮在app的UI最上层, 用于实时地、直观地显示app的性能指标和日志信息:App使用的内存信息、App的实时帧率FPS、app启动时间、Activity启动时间、文字log信息。
How to use
How to import
dependencies {
debugImplementation 'com.sw.debug.view:debug-view:1.0.2'
releaseImplementation 'com.sw.debug.view:debug-view-no-op:1.0.2'
testImplementation 'com.sw.debug.view:debug-view-no-op:1.0.2'
} 如果是java项目需要先添加kotlin的支持,步骤是在Android Studio中选择tools ---> kotlin ---> Configure Kotlin in Project
private fun initDebugView() {
DebugViewWrapper.instance.init(
DebugViewWrapper.Builder(this)
.viewWidth(250) /* the width of debug-view */
.bgColor(0x6f677700) /* the color of debug-view */
.alwaysShowOverlaySetting(true) /* the flag for always showing Overlay Setting */
.logMaxLines(20) /* the max lines of log */
)
DebugViewWrapper.instance.show()
}
LogModule.instance.log("some msg...")
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论