android常见错误汇总2

来源:互联网 发布:经传软件 央视315 编辑:程序博客网 时间:2024/06/10 07:04

1、The method find_and_modity_text_view() from the type TextActivity is never used locally
需要在onCreate()中声明
2、出现程序强制关闭,可能是由于没有声明ACTIVITY
3、如果按钮出现在本地不可能调用的错误,很可能是没有申明响应程序
4、Link all references for a local rename (does not change references in other files)
main cannot be resolved or is not a field
刚遇到这个纠结的问题,代码都没错,R.layout.main总是在layout上游错误提示波浪线。在网上查了好多都是说clean一下工程 然后build工程就可以了,或者fix project properties 但是还是解决不了…
原因可能是添加文件,比如xml文件或者资源文件时,系统自动添加了import android.R;android.R是系统提供的资源,R是应用程序的资源。
这时候只要删除 import android.R;这条语句就可以了。
5、在向SD卡导入文件时,出现Failed to push the item(s)的错误,可以将时间延长,重启ECPLISE。eclipse->windwos->;Preferences->android->DDMS->ADB connection time out (ms)
6、Unhandled exception type FileNotFoundException,未经处理的IOException异常类型
回避或捕获这个异常就OK了
需要加try catch
try{……}catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
8、关于“Cannot cast from View to CheckBox”的问题
很多同学在学习组件的时候,都喜欢把类名定义为该组件的名称,比如CheckBox和RadioButton之类的,这样就会导致控件包不能导入,以致不能实例化checkbox,同时也不能添加事件监听器,解决办法其实很简单,
只要rename类名就可以了,就是换个类名就OK了。
9、open文件时,注意提前设置权限
10、错误:Unknown host api.tudou.com, throwing UnknownHostException。
解决办法:在AndroidManifest.xml中添加
11、Unable to find explicit activity class have you declared this activity in your AndroidManifest.xml?
解决办法:在AndroidManifest.xml的application段添加声明:,详情见:
http://stackoverflow.com/questions/736571/using-intent-in-an-android-application-to-show-another-activity
12、adb push错误
mksdcard 1024M sdcard1.iso
adb push android.jpg /sdcard/android.jpg
error:failed to copy ‘android.jpg’ to ‘/sdcard/android.jpg’: Read-only file system
解决办法:
删除sdcard1.iso;
mksdcard 1024M sdcard
adb push android.jpg /sdcard/android.jpg

0 0