摘要:
安装顺序:http://jingyan.baidu.com/article/f0062228f0b18afbd2f0c871.htmlAndroid4.0版本的安装http://www.apkbus.com/forum.php?mod=viewthread&tid=78835http://www.cnblogs.com/leipei2352/archive/2011/08/01/2124333.html1.jdk下载2.eclipse下载(在官网上下载eclipse-mobile-juno-SR1-win32.zip)这是开发Android用的,要是下载eclipse classic的 阅读全文
摘要:
static变量有点类似于C中的全局变量的概念。值得探讨的是静态变量的初始化问题。拿以下程序为例class Value{ static int c=0; Value(){ c=15; } Value(int i){ c=i; } static void inc(){ c++; }}class Count{ public static void prt(String s){ System.out.println(s); } Value v=new Value(10); static Value v1,v2; static{ p... 阅读全文
摘要:
Cannot complete the install because one or more required items could not be found2011-10-05 09:55:06 Cannot complete the install because one or more required items could not be found要在Eclipse IDE下编写Android软件之前必须要安装ADT插件,按照Android Developers上的详细指导()应该能够很顺利的安装上这个插件。但是很不幸的是我在这个过程中出现了一些意外。在添加完更新源和选择更新项开 阅读全文
摘要:
Eclipse安装ADT时长时间停留不动的解决办法 微酷在用Eclipse进行Android开发时安装ADT插件,结果花费了很长的时间:calculating requirements and dependencies(计算需求和依赖性 )这个问题通常就是在点击安装之后显示“Calculating requirements and dependencies”,然后进度条不动,调出系统监视器会发现压根儿没下载流量,解决方法:1、把“Contact all update sites during install to find required software”(寻找指定的软件前先访问所有... 阅读全文