博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android开发遇到的问题
阅读量:5329 次
发布时间:2019-06-14

本文共 2633 字,大约阅读时间需要 8 分钟。

1、导入某个现有project目录后,出现R资源不能resolve的错误。导致程序无法编译执行,此时右键->properties->android,看最上面的taget又没有选择对,勾选当前可选的最高那个版本号(即你本机已经安装的最高版本号的SDK)。点击apply,错误解决。

2、style.xml里出现样式无法识别:

error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light'.

也包含其它样式的此类错误。是由于:

8
accepted

AppCompat is a library project. You need to reference the library project in your android project.

Check the topic Adding libraries with resources.

去这个地址看解决方法吧。

參考我的还有一篇博文:

3、Activity中使用addContentView(layoutPlatform, lpLl);方法动态加入了一个子view,layoutPlatform是LinearLayout类型的,作为view。我想在layoutPlatform这个子view里与Activity通信,即在子view里点击某个button之后,让Activity更新界面内容,这个实现方法是。在Activity中实现CallBack借口,重写它的handleMessage方法。然后在子view的button点击处理函数里给Activity发送message就可以。

发送消息的方式是 handler.sendMessage();

4、context转化为Activity,转化方法是:

if (context instanceof Activity){activity = (Activity)context;}
5、addContentView 动态加入的view怎样移除呢?

ViewGroup vg = (ViewGroup)layoutPlatform.getParent();vg.removeView(layoutPlatform);
须要强转成为ViewGroup,然后remove就可以。

6、导入其它项目进来时。它使用了使用android.support.v7库,所以导入之后报错,解决的方法是,在Android studio的程序目录里有sdk目录。里面存放着下载好的这个库的project。将它导入到eclipse里,然后再引用它就可以了。

详细步骤:

    (1)import -> Existing Android Code Into Workspace 

    (2) 选择目录: 在sdk下的extras\android\support\v7\appcompat目录中

    (3)勾选"Copy projects into workspace"

    (4)如出现 Unable to resolve target 'android-16' 错误,是build target版本号号问题。右键->properties->Android->build target,选择一个本机已经安装好的sdk版本号。

    (5)在你新project中右键->properties->Android->Library中add上面的库project就可以。

參考:http://blog.csdn.net/xcl168/article/details/13613265

7、The library 'wikitudesdk.jar' contains native libraries that will not run on the device。

解决方法:window-》preference-》Android-》build-》“Force error when external jars contain native libraries”.选项关闭就可以。

8、再引入第三方lib或者jar包时,编译通过,可是执行不了,报错例如以下:

java.lang.NoClassDefFoundError: android.support.v4.view.ViewConfigurationCompat

我使用的是Android support V4那个jar包。解决的方法是在libs/xxx,jar文件上右键->Use as source folder 就可以;

9、project上有红色叹号或者编译不了,右键->properties,查看Android选项,是否引用了本地的libproject,然后查看Java Build Path选项卡。Order and Export中假设有missing的project,说明它引用了其它project。可是那些project在本地不存在,到Porjets 选项中删除这些missing的project;

10、执行project时出现:

1
2
Unable to execute dex: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;
Conversion to Dalvik format failed: Unable to execute dex: Multiple dex files define Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl;

右键-》property-》java build path-》Order and Export-》把带勾的项所有取消勾选 就可以。

待续。。

转载于:https://www.cnblogs.com/ldxsuanfa/p/9957472.html

你可能感兴趣的文章
redis cluster 集群资料
查看>>
微软职位内部推荐-Sr. SE - Office incubation
查看>>
微软职位内部推荐-SOFTWARE ENGINEER II
查看>>
centos系统python2.7更新到3.5
查看>>
C#类与结构体究竟谁快——各种函数调用模式速度评测
查看>>
我到底要选择一种什么样的生活方式,度过这一辈子呢:人生自由与职业发展方向(下)...
查看>>
poj 题目分类
查看>>
windows 安装yaml支持和pytest支持等
查看>>
读书笔记:季羡林关于如何做研究学问的心得
查看>>
面向对象的优点
查看>>
套接口和I/O通信
查看>>
阿里巴巴面试之利用两个int值实现读写锁
查看>>
浅谈性能测试
查看>>
Winform 菜单和工具栏控件
查看>>
CDH版本大数据集群下搭建的Hue详细启动步骤(图文详解)
查看>>
巧用Win+R
查看>>
浅析原生js模仿addclass和removeclass
查看>>
Python中的greenlet包实现并发编程的入门教程
查看>>
java中遍历属性字段及值(常见方法)
查看>>
深入理解jQuery框架-框架结构
查看>>