该死的gen跟R.java文件 不是build跟clean可以解决的 是要跟删除android。R

来源:互联网 发布:影响淘宝客单价的因素 编辑:程序博客网 时间:2024/04/28 06:25

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

0 0
原创粉丝点击