android开发问题
文章平均质量分 59
恰的苦霸得蛮
这个作者很懒,什么都没留下…
展开
-
Android java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader报错解决方法
错误分析 这个错误是so库加载问题,报错一般以 java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader开头。一般是程序在运行过程中调用System.loadLibrary(“xxxxxxxx”);是无法找到libxxxxxx.so文件导致的报错。针对这个错误我们可以一边排查一边来解决。 问题分析和解决 1.查看so库是不是已经在编译的过程中打包到apk里。 方法: 找到项目的这个目录app\build\outputs\apk,然后..原创 2020-06-11 15:32:30 · 1192 阅读 · 1 评论 -
ERROR: Failed to resolve: com.github.**** 报错
ERROR: Failed to resolve: com.github.**** 报错 原因之一: maven { url "https://jitpack.io" } maven 加错地方 我们整个工程的build中。 一看有两个repositories; buildscript { repositories { google() jcenter() } dependencies { classpath 'com..原创 2020-05-26 14:07:07 · 1249 阅读 · 0 评论 -
Java.lang.NoClassDefFoundError问题记录
运行module:Java.lang.NoClassDefFoundError: 问题求解? 先记录原创 2020-05-22 09:01:00 · 228 阅读 · 0 评论 -
android开发问题-关于Xutils框架出现无法访问HttpRequestBase 找不到org.apache.http.client.methods.HttpRequestBase解决方案
Error:(62, 30) 错误: 无法访问HttpRequestBase 找不到org.apache.http.client.methods.HttpRequestBase的类文件 注: 某些输入文件使用或覆盖了已过时的 API。 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 android 6.0(api 23) SDK,Android的网络转载 2016-11-24 09:58:20 · 511 阅读 · 0 评论 -
安卓android_技术问题-Android下setLatestEventInfo警告、Handler警告、SimpleDateFormat警告
使用了Notification下的setLatestEventInfo()方法时,提示:“ 不建议使用类型 Notification 的方法 setLatestEventInfo(Context, CharSequence, CharSequence, PendingIntent)”! 这是为什么呢?查询后得知:setLatestEventInfo该方法已被deprecate,不建议使用了翻译 2016-12-14 16:29:44 · 402 阅读 · 0 评论 -
关于dialog引起的java.lang.IllegalArgumentException:View=com.android.internal.policy.impl.Ph
转自:http://blog.csdn.net/yuxiaohui78/article/details/38076447 E/AndroidRuntime(9916): Java.lang.IllegalArgumentException: View=com.Android.internal.policy.impl.PhoneWindow$DecorView{43805410转载 2017-02-28 14:48:04 · 1546 阅读 · 0 评论 -
错误:java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams
java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams FrameLayout的父控件是一个LinearLayout控件,问题出在,LinearLayout为子控件分配空间的时候,获原创 2017-03-20 13:30:39 · 2287 阅读 · 0 评论