
android
qq_28641401
这个作者很懒,什么都没留下…
展开
-
AndroidStudio连不上Android设备真机
有的时候我们经常会遇到android studio连接不上真机,然后就特别的烦躁。我也遇到了,然后就在网上一顿查资料,经过查资料,终于解决了。现在记录一下,以防以后再次遇见。我是通过下方链接的文章解决的问题。 参考链接:https://blog.youkuaiyun.com/surpriseHao/article/details/78583685...转载 2020-05-08 14:49:44 · 309 阅读 · 0 评论 -
android studio到项目报错:Caused by: java.lang.AbstractMethodError
导入网上下载的android 项目直接报错Caused by: java.lang.AbstractMethodError,报错信息如下: java.lang.AbstractMethodError这个错误导致的原因又很多,这里只记录一下此次遇到的原因。我此次导致该错误的原因是因为gradle版本号与插件版本以及Android studio 版本不匹配所导致。 ...原创 2019-07-29 13:42:54 · 3270 阅读 · 0 评论 -
android api 19版本 Webview加载https报错:"Uncaught SyntaxError: Unexpected identifier"
今天使用Webview调用https网页,报错:I/chromium: [INFO:CONSOLE(2)] "Uncaught SyntaxError: Unexpected identifier", source: https://web.figbot.com.cn/doctor/js/kxbill.js (2)上网搜,各种找“Uncaught SyntaxError: Unex...原创 2019-06-25 15:35:24 · 4302 阅读 · 0 评论 -
android WebView加载的页面内无法进行页面跳转
遇到一个问题,使用WebView加载的网页,网页内跳转页面无法实现,webview加载的页面网址:http://114.115.205.129:8081/register/register.html,页面如图: 错误现象: 点击“确定”按钮,需求是跳转“同意函”页面...原创 2019-08-08 15:13:46 · 6029 阅读 · 0 评论 -
运行项目Could not find the AndroidManifest.xml file, using generation folder
运行别人发过来的代码时报错了,Could not find the AndroidManifest.xml file, using generation folder [E:\WorkSpace\AStudio\SpaceXiaobao\KangXiaoBaoDui\app\build\generated\source\apt\dali\debug]) 1 个错误 ...原创 2019-05-14 17:40:24 · 4536 阅读 · 0 评论 -
android 实现圆角图片
当下的项目越来越注重界面的美化,而圆角图片使用的也越来越频繁,网上各种自定义圆角图片,本文是不使用自定义,而是利用现有的空间组合实现圆角图片。这种方法我也忘了是在哪篇文章上看到的,现分享给同样需要的小伙伴! 控件利用:CardView + ImageView 要实现圆角图片,首先CardView有设置弧度的属性,我们就是利用其该属性为图片添加圆角的而要使用Card...原创 2018-03-06 11:12:58 · 1585 阅读 · 2 评论