如何做国际网站,网络工程师考试资料,中国刚刚发生8件大事,公司网站怎么修改1.用Eclipse搭建Android开发环境和创建第一个Android项目#xff08;Windows平台#xff09; 链接阅读http://www.cnblogs.com/allenzheng/archive/2012/11/10/2762379.html 搭建环境中的不同之处#xff1a; #xff08;1#xff09;我在安装过程中#xff0c;在安装ADT…1.用Eclipse搭建Android开发环境和创建第一个Android项目Windows平台 链接阅读http://www.cnblogs.com/allenzheng/archive/2012/11/10/2762379.html 搭建环境中的不同之处 1我在安装过程中在安装ADT插件时并没有显示NDK plugins但是并不影响后续工作只要选中developer tools即可 2安装SDK过程中点击http://developer.android.com/sdk/index.html未能下载像博客中所写的SDK 包而是Google 的 集成SDK Manager.exe此时只要选择SDK Manager.exe所在的目录即可然后点击SDK Manager.exe进行安装即可在preference中点击查看时也和预期效果一样 3创建AVD模拟器时界面和以往不太一样此时需要选择device而不是屏幕分辨率一般device模拟器和后来创建activity时所选择的版本要保持一致否则会提示错误此时只需要在代码中修改android:minSdkVersion8为你所要的版本值即可 2.建立第一个项目HelloAndriod后运行遇到的错误 1 Error : Could not find HelloAndroid.apk 解决方法根据这个解决方法解决。链接http://stackoverflow.com/questions/3645545/error-could-not-find-helloandroid-apk  (2):运行AVD遇到“Emulator] could not get wglGetExtensionsStringARB”原因分析 device space不足。 解决办法 选择AVD-Edit-Device中选择一个较小的尺寸就可以了。毕竟我们只是测试而已。 另外可以将Intener storage Memory等设置的大一些应该就可以了。   分析2wglGetExtensionsStringARB属于OpenGL ES此错误是由对OpenGL ES的支持不全引起。OpenGL ES (OpenGL for Embedded Systems) 是 OpenGL 三维图形 API 的子集针对手机、PDA和游戏主机等嵌入式设备而设计。   简言之OpenGL ES用于显示以及GPU加速它也应用于Android emulator中作为硬件加速的一部分。   现代CPU为提高virtual machines的运行效率提供了一些扩展Android emulator利用这些扩展加速执行速度因此对运行系统的CPU有一定要求     Intel Virtualization Technology (VT, VT-x, vmx) extensionsAMD Virtualization (AMD-V, SVM) extensions (only supported for Linux)    无法支持的机器将无法运行使用这些扩展的emulator。   故而当出现这个error时需要检查    机器支持Virrualization TechnologyVM Acceleration正确配置     windows下使用Intel Hardware Accelerated Execution Manager (Intel HAXM)作为虚拟驱动安装方式是  Start the Android SDK Manager, select Extras and then select Intel Hardware Accelerated Execution Manager.After the download completes, execute sdk/extras/intel/Hardware_Accelerated_Execution_Manager/IntelHAXM.exe.Follow the on-screen instructions to complete installation.    运用上述分析2并运行IntelHAXM.exe.在进行安装过程中出现问题因为VT-X没有安装查看sdk管理器中发现确实未安装安装后解决问题happy 转载于:https://www.cnblogs.com/graceting/p/4039961.html