uniapp开发app框架在提升开发效率中的独特优势与应用探索
923
2022-12-01
Android常见错误
1、Unable to resolve target 'android-2'
安装低版本的api,再default.properties 这个文件中把target=android-2 改成 target=android-7终于就没有问题了。
2、Invalid start tag LinearLayout
main.xml放错文件夹了,应该在\res\layout下。
3、INSTALL_FAILED_INSUFFICIENT_STORAGE
原因:SD卡内存容量不够
法一:在下图的“Additional Emulator Command Line Options”中加上“-partition-size 128”
法二:启动模拟器,然后进入菜单
settings->applications->mange applications-> select the application->select "unistall".
这样就能彻底删除了,然后再重新安装这个apk就没问题了
4、No Space left on device
清除C:\Users\Lanyan\AppData\Local\Temp\AndroidEmulator文件夹下的tmp文件
参考资料:not open the editor: Resource is out of sync with the file system
当右击default.properties打开时,出现下图错误:
解决方法:右击工程,Refresh一下就好了。
原因:Usually happens when some files are edited outside of eclipse。
6、Invalid project description
网上的解决方法是:在项目根目录下的.project文件中,找到
解决方法:我已经将该工程导入Eclipse,一个工程不能重复导入两次;或者直接把你的文件夹考的别的目录下后重新导入。
原因:有两份相同的AndroidManifest.xml的描述性文件。
7、java.lang.SecurityException: Requires VIBRATE permission
解决方法:在AndroidManifest.xml中加上一句
“
原因:权限问题导致,因为使用了震动功能。
8、Activity not started, its current task has been brought to the front
解决方法:在Eclipse中,“project”-->“clean…”
原因:模拟器中还有东西在运行,也就是你要运行的activity已经有一个在模拟器中运行了不要以为你的模拟器退出到桌面了就没有东西在跑了。在你调试的时候异常关闭的程序有可能就有activity在运行。
9、ArrayAdapter requires the resource ID to be a TextView
问题描述:java.lang.IllegalStateException: ArrayAdapter requires the resource ID to be a TextView而
adapt = new ArrayAdapter
这句中布局main中的布局可能不是TextView对象。
adapt = new ArrayAdapter
参数A2是一个“resource ID to be a TextView
解决方法:A2改为:android.R.layout.simple_spinner_dropdown_item
10、R.java文件突然不见了
解决方法:右键项目-->Build Project
原因:res/drawable下的文件名只能是在a~z、0~9之间字符组成。
10、ScrollView can host only one direct child。
解决方法:需要把所有的子元素放到一个LinearLayout内部或RelativeLayout等其他布局方式。
原因:主要是ScrollView内部只能有一个子元素,即不能并列两个子元素。
11、emulator: ERROR: the user data image is used by another emulator. aborting
没有正常关闭导致的,删除android-sdk-windows\.android\avd\对于版本\下的以.lock结尾的文件夹就行。
原因:.lock是加锁,如果程序崩溃等原因导致无法清除这些以.lock结尾的文件夹,就会出现这个问题,也就是这个avd的锁没有被释放,导致avd manager以为这个avd正在使用当中。
12、* daemon not running. starting it now *
ADB server didn't ACK
* failed to start daemon *
已经确认adb.exe的路径没有问题,重启了两次模拟器和eclipse还是不行,上网查了下资料~
解决办法:
(1)查看任务管理器,关闭所有adb.exe;(2)重启eclipse即可
13、android.content.res.resources notfoundexception
在Manifest.xml中加上:
14、Unable to instantiate activity ComponentInfo
解决方案:更改activity android:name="Acitivity"为activity android:name=".Acitivity"
原因:AndroidManifest.xml配置activity的路径时出错了
15、工程名上有红色感叹号
解决方案:右键项目名称BuildPath--->ConfigureBuildPaht...中,然后上面有几个选项卡找到Libraries中出现红色叉号的包为路径错误的包。到classpath中修改相应包的当前路径。然后回到eclipse中F5刷新工程。
问题原因:工程中classpath中指向的包路径错误。
16、使用Intent时出现另一个活动未发现的异常(ActivityNotFoundException)
解决方案:在AndroidManifest.xml中再加一个
17、Fail to connect to camera service
在AndroidManifest.xml中添加
如果还是不行
@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服务,关闭手机调试或者模拟器,重启就好了。
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",多加一个“+”。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~