错误分析集合

1、The method find_and_modity_text_view() from the type TextActivity is never used locally
需要在onCreate()中声明
2、出现程序强制关闭,可能是由于没有声明ACTIVITY
3、如果按钮出现在本地不可能调用的错误,很可能是没有申明响应程序
  <?xml version="1.0" encoding="utf-8" ?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent">
  <EditText android:id="@+id/edit_text" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="这里可以输入文字" />
  <Button android:id="@+id/get_edit_view_button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="获取EditView的值" />
  </LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">

  <EditText 
 android:id="@+id/edit_text"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="这里可以输入文字"
    />
  <Button 
 android:id="@+id/get_edit_view_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="获得EdiView的值"
    />
</LinearLayout>

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文件时,注意提前设置权限

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值