android常见错误汇总2

  • Post author:
  • Post category:其他


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 (FileNotFoundExce



版权声明:本文为zjl925110zjl原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。