1,Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE
Description:这表示手机内存不足,对内存较小的手机经常会出现这样的问题,从而导致应用程序下载不到手机中。
Solution:修改一下应用程序描述符:<manifestxmlns:android="http://schemas.android.com/apk/res/android" package="XX" Android:installLocation="preferExternal" ......>即可。
2,Unable to execute dex: Multiple dex files define Lcom/google/zxing/LuminanceSource;
Description:重复加载jar包导致。
Solution:检查工程中导入的新jar包,是否重复导入。
3,camera.setDisplayOrientation(90);--->add cast to Camera
Description:API版本太低,setDisplayOrientation在2.2以上才能使用。
Solution:我首先在工程里面将API设置成了2.3.3,发现还是有错,于是根据提示在调用setDisplayOrientation方法的函数体上面加了一行@SuppressLint("NewApi"),然后就ok啦!(网上有通过反射机制解决的,没试过)
4,Description:想更改gen目录下的包名,发现右击->Refactor->Rename之后,并不是更改,而是多出一个包。
Solution:这个包名的修改是该到AndroidManifest.xml文件中修改里面的package
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="新包名".......
5,收获:在线性布局中使用android:layout_marginTop="10dp"的效果:当前组件距邻近的top组件的距离为10dp。