上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 49 下一页
摘要: Android开发绘制白色Bitmap显示却是黑的而其他颜色显示正常的解决方法 //实现绘制白色Bitmap的代码如下: public class DrawView extends View { private Bitmap bitmap; private Paint paint; public D 阅读全文
posted @ 2022-07-14 11:24 yongfengnice 阅读(845) 评论(0) 推荐(0)
摘要: adb install 安装apk时报错Failure [INSTALL_FAILED_TEST_ONLY]解决方法 原因: Android studio直接跑起来后的apk是INSTALL_FAILED_TEST_ONLY的,是不能直接通过adb install命令行安装的 解决方法: 方法1:添 阅读全文
posted @ 2022-07-08 17:05 yongfengnice 阅读(2977) 评论(0) 推荐(0)
摘要: 有时候我们会遇到项目出现gradle同步成功却运行不了的奇怪情况,其实出现这个情况是编译不过,gradle同步成功不代表编译成功 解决方法步骤: 1)先看看控制台Build Output窗口看看哪一步构建失败了,同时点击出错的那一步就会出现了错误的具体原因,然后按照提示修改即可 2)有时候此时单独看 阅读全文
posted @ 2022-06-19 10:14 yongfengnice 阅读(524) 评论(0) 推荐(0)
摘要: Android开发java.lang.Class里面的native方法实现类源代码 Android SDK里面的java.lang.Class有一些native方法,比如public native T newInstance()等等,它们的实现类对应 art/runtime/native/java_ 阅读全文
posted @ 2022-06-13 18:21 yongfengnice 阅读(88) 评论(0) 推荐(0)
摘要: IDEA开发工具出现错误: 找不到或无法加载主类 工具右上角找到向下的按钮点击Edit Configurations进入配置页面 在Configuration栏目找到JRE选项,选择一个可用jre版本,保存退出重新使用即可。 阅读全文
posted @ 2022-06-13 17:51 yongfengnice 阅读(173) 评论(0) 推荐(0)
摘要: # encoding:utf-8 #1.window电脑(mac或者linux)上安装frida,安装步骤: # 1)先安装python环境(可选安装npm环境,最好安装一下) # 2)pip install frida-tools # CLI tools 地址:https://github.com 阅读全文
posted @ 2022-06-11 21:52 yongfengnice 阅读(744) 评论(0) 推荐(0)
摘要: sudo su - //接着输入密码切换到su环境 python -m ensurepip //使用python确保安装pip工具,当然前提是安装了python了呀 阅读全文
posted @ 2022-06-11 10:36 yongfengnice 阅读(296) 评论(0) 推荐(0)
摘要: android开发android.app.RemoteServiceException: Bad notification posted from package com.suyf.test: Couldn't create icon: StatusBarIcon(icon=Icon(typ=RES 阅读全文
posted @ 2022-05-31 10:33 yongfengnice 阅读(571) 评论(0) 推荐(1)
摘要: Android开发Android Gradle plugin requires Java 11 to run. You are currently using Java 1.8.错误的解决方法 问题描述: Android Gradle plugin requires Java 11 to run. 阅读全文
posted @ 2022-05-26 15:30 yongfengnice 阅读(1954) 评论(0) 推荐(1)
摘要: android开发kotlin编译出错Module was compiled with an incompatible version of Kotlin 问题描述 Module was compiled with an incompatible version of Kotlin. The bin 阅读全文
posted @ 2022-05-26 14:29 yongfengnice 阅读(13097) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 49 下一页