摘要: 为了让Aptana支持GitHub,需要安装Egit,但在的时候碰到两个错误,一个是关于缺少EGit Mylyn另一个是缺少org.eclipse.egit.import.feature.group。缺少Egit Mylyn的提示:Cannot complete the install because one or more required items could not be found.Software being installed: EGit Mylyn 1.1.0.201109151100-r (org.eclipse.egit.mylyn.feature.group 1.1.0. 阅读全文
posted @ 2013-08-19 18:41 似水流云 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 1. 什么是Volley在这之前,我们在程序中需要和网络通信的时候,大体使用的东西莫过于AsyncTaskLoader,HttpURLConnection,AsyncTask,HTTPClient(Apache)等,今年的Google I/O 2013上,Volley发布了。Volley是Android平台上的网络通信库,能使网络通信更快,更简单,更健壮。这是Volley名称的由来: a burst or emission of many things or a large amount at once在Google IO的演讲上,其配图是一幅发射火弓箭的图,有点类似流星。见下图其实,从这幅图 阅读全文
posted @ 2013-08-19 17:06 似水流云 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 1.数据库、表的建立,记录的添加、查询、修改和删除F:">sqlite3 database.dbsqlite> create table admin(username text,age integer);sqlite> insert into admin values('kuang',25);sqlite> select * from admin;sqlite> update admin set username='kk',age=24 where username='kuang' and age=25;s 阅读全文
posted @ 2013-08-19 16:24 似水流云 阅读(410) 评论(0) 推荐(0) 编辑