上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 48 下一页
摘要: 在https://developer.android.com/studio选择下载Command line tools only 然后按照https://developer.android.com/studio/command-line/sdkmanager步骤操作 从 Android Studio 阅读全文
posted @ 2022-11-12 16:20 yongfengnice 阅读(1397) 评论(0) 推荐(0)
摘要: Android开发Compose版本、Kotlin 版本、KSP版本版本对应关系是要遵循官方给出的,不然容易出锅甚至编译都不过,即使编译通过也可能导致潜在崩溃 Compose Compiler 版本和兼容的 Kotlin 版本对应关系 https://developer.android.com/je 阅读全文
posted @ 2022-11-10 21:43 yongfengnice 阅读(3621) 评论(0) 推荐(2)
摘要: Android开发页面重定向导致WebvView.canGoBack一直返回true的解决方法 原因:打开页面A的时候重定向到页面B,页面B回退的时候回退到页面A,但是接着又重定向到页面B,所以canGoBack一直返回true,导致一直无法退出。 解决方法: webView.setWebViewC 阅读全文
posted @ 2022-10-26 20:10 yongfengnice 阅读(945) 评论(0) 推荐(0)
摘要: android开发使用tortoiseGit合并代码处理冲突的使用记录 工具Android studio,Git,tortoiseGit 作为Android开发的,android studio离不开,使用git管理项目也是离不开的,自行下载git并配置https://git-scm.com/down 阅读全文
posted @ 2022-10-13 19:29 yongfengnice 阅读(246) 评论(0) 推荐(0)
摘要: Execution failed for task ':ent:entPdfConvert:generateEntDebugRFile'. Could not resolve all files for configuration ':ent:entPdfConvert:entDebugCompil 阅读全文
posted @ 2022-10-13 18:45 yongfengnice 阅读(202) 评论(0) 推荐(0)
摘要: android开发apk安装失败对应的错误码以及原因 代码在PackageManager.java系统类里 中文意思可参考:https://www.cnblogs.com/cwfsoft/p/11776094.html /** * @hide 未知 */ public static final in 阅读全文
posted @ 2022-10-11 14:51 yongfengnice 阅读(4767) 评论(0) 推荐(0)
摘要: 方法一:使用AndroidSDK工具下的systrace.py脚本获取跟踪记录 参考:https://developer.android.com/topic/performance/tracing/command-line run_systrace.py是Android SDK工具包里的一个pyth 阅读全文
posted @ 2022-09-30 17:29 yongfengnice 阅读(819) 评论(0) 推荐(0)
摘要: 出现这个问题的原因对应.c或者.cpp的实现有问题,包括无法链接so库、或者是.c或.cpp没有编译成功、或者是.c或.cpp编译成功了但是实现是有问题的。 首先我们明确了出现这个问题原因就知道排查方向了,这很重要。 如果使用的是.h头文件与so库的形式,我们只能排查so链接的问题了,比如so库路径 阅读全文
posted @ 2022-09-30 15:34 yongfengnice 阅读(908) 评论(0) 推荐(0)
摘要: 在 Visual Studio 开发C、C++项目并连接到你的目标 Linux 系统(包括WSL系统) 目标Linux系统需要开启sshd服务,具体操作可以参考下面的文章 https://www.cnblogs.com/yongfengnice/p/11306494.html 安装Visual St 阅读全文
posted @ 2022-09-02 15:59 yongfengnice 阅读(312) 评论(0) 推荐(0)
摘要: Android开发绘制白色Bitmap显示却是黑的而其他颜色显示正常的解决方法 //实现绘制白色Bitmap的代码如下: public class DrawView extends View { private Bitmap bitmap; private Paint paint; public D 阅读全文
posted @ 2022-07-14 11:24 yongfengnice 阅读(841) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 48 下一页