03 2013 档案

摘要:一、软件环境1、系统:CentOS 6.3 64位2、Apache:httpd-2.4.4.tar.bz23、依赖包:apr-1.4.6.tar.bz2、apr-util-1.5.1.tar.bz2(下载地址:http://apr.apache.org/download.cgi)pcre-8.31.tar.bz2(下载地址:http://www.pcre.org)假设所需软件包放于:/root/software/二、安装过程1、安装apr#cd /root/software#tar -jxvf apr-1.4.6.tar.bz2#cd apr-1.4.6#./configure#make#ma 阅读全文
posted @ 2013-03-20 13:16 狂热与执着 阅读(317) 评论(0) 推荐(0)
摘要:nutzmake you happy with Java 阅读全文
posted @ 2013-03-16 01:46 狂热与执着 阅读(142) 评论(0) 推荐(0)
摘要:拥有4种效果的圆环状进度的ProgressWheel -This is a custom component for Android intended for use instead of a progress bar.ExpandableMenu+SplashScreen+FastScroller+3DTagCloud -http://mobility.googlecode.com/svn立体效果的3D Gallery-coverflow -http://code.google.com/p/android-coverflow/下拉刷新+自动折叠AmazingListView -http:// 阅读全文
posted @ 2013-03-16 00:29 狂热与执着 阅读(744) 评论(0) 推荐(0)
摘要:ORM:OrmLite- Lightweight Java ORM Supports Android and SQLite Object Relational Mapping Lite (ORM Lite) provides some lightweight functionality for persisting Java objects to SQL databases while avoiding the complexity and overhead of more standard ORM packages. It supports a number of SQL databases 阅读全文
posted @ 2013-03-16 00:14 狂热与执着 阅读(237) 评论(0) 推荐(0)
摘要:1 public static Bitmap TileClipPath(Bitmap src,Path path,int w,int h) 2 { 3 BitmapDrawable drawable = new BitmapDrawable(src); 4 drawable.setTileModeXY(TileMode.REPEAT , TileMode.REPEAT ); 5 drawable.setDither(true); 6 7 Bitmap.Config config = drawable.g... 阅读全文
posted @ 2013-03-05 09:49 狂热与执着 阅读(626) 评论(0) 推荐(0)