android常见错误
2012-11-20 15:10:51 来源:WEB开发网16、使用Intent时出现另一个活动未发现的异常(ActivityNotFoundException)
解决方案:在AndroidManifest.xml中再加一个<activity android:name=".Filelist" android:label="@string/app_name" />
17、Fail to connect to camera service
在AndroidManifest.xml中添加<uses-permission android:name="android.permission.CAMERA" />
如果还是不行
@Override
public void surfaceDestroyed(SurfaceHolder holder) {
// TODO Auto-generated method stub
mCamera.stopPreview();
mCamera.release();//加上这句,就OK!
mCamera=null;
}
18、android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
解决方法:将new AlertDialog.Builder(Context context)中的参数用Activity.this(Activity是你的Activity的名称)来填充就可以正确的创建一个Dialog了。
导致报这个错是在于new AlertDialog.Builder(mcontext),虽然这里的参数是AlertDialog.Builder(Context context)但我们不能使用getApplicationContext()获得的Context,而必须使用Activity,因为只有一个Activity才能添加一个窗体。
19、java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
在任务管理器中终止adb服务,关闭手机调试或者模拟器,重启就好了。
http://hi.baidu.com/o%B0%D7%C9%AB%B5%C4%D4%C6/blog/item/024c3c6bfb6440c180cb4a3d.html
20、java.lang.IllegalStateException: Circular dependencies cannot exist in RelativeLayout
两个表示位置的属性不能同时使用,但是有些一起用又没有报异常,不太了解。
如android:layout_alignParentTop="true" android:layout_centerHorizontal="true"
21、No resource found that matches the given name
在相对布局中,若是用到android:layout_above属性,并且其后id之前没有出现过,那么需要这样写:android:layout_above="@+id/vidAdd_ButtonGroup",多加一个“+”。
22、@Override错误
Window->Preferences->Java->Compiler.
把Compiler compliance level的级别改成1.6,每个工程属性里只要默认设置就行了,不要设置specific.
23、PANIC: Could not open: C:\Users\Lanyan\.android
更多精彩
赞助商链接