摘要: 1. http://www.cnblogs.com/Greenwood/archive/2011/02/27/1966472.html2.http://www.linuxidc.com/Linux/2011-07/39301.htm3.http://www.2cto.com/kf/201201/117906.html4.http://blog.sina.com.cn/s/blog_5688414b0100wgt7.html5.http://my.unix-center.net/~Simon_fu/?p=652 阅读全文
posted @ 2012-02-03 18:07 higirle 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Class OverviewA Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and that thread's message queue. When you create a new Handler, it is bound to the thread / message queue of t 阅读全文
posted @ 2012-02-03 17:39 higirle 阅读(5900) 评论(0) 推荐(0) 编辑
摘要: http://disanji.net/ http://tech.it168.com/focus/201011/winphone7/index.html 阅读全文
posted @ 2012-02-03 13:06 higirle 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1. html5,andriod相关教程http://www.cnmsdn.com/2. W3C Schoolhttp://www.w3school.com.cn/xml/xml_intro.asp 3. disanji.nethttp://disanji.net/category/html5-doc/ 阅读全文
posted @ 2012-02-03 12:56 higirle 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑ 当前行和上面一行交互位置(同上)Alt+← 前一个编辑的页面Alt+→ 下一个编辑的页面(当然是针对上面那条来说了)Alt+Enter 显示当前选择资源(工程,or 文件 or文件)的属性Shift+Enter 在当前行的下一行插入空行(这时鼠标可以在当前行的任一位置,不一定是最后)Shift+Ctrl+Enter 在当前行. 阅读全文
posted @ 2012-02-03 12:24 higirle 阅读(224) 评论(0) 推荐(0) 编辑
摘要: Android最简单的图片裁剪方法,非使用系统裁切功能网上搜了很多,都要使用Canvas,这个绝对是绕远了……经实验,图片裁切只要一句就可以 ,下面是我写的一个按正方形区域裁剪的方法 /** * 按正方形裁切图片 */ public static Bitmap ImageCrop(Bitmap bitmap) { int w = bitmap.getWidth(); // 得到图片的宽,高 int h = bitmap.getHeight(); int wh = w > h ? h : w;// 裁切后所取的正方形区域边长 int retX = w > h ? (w - h) / 阅读全文
posted @ 2012-02-03 11:31 higirle 阅读(19520) 评论(1) 推荐(2) 编辑
摘要: public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to, int flags) Since: API Level 11Standard constructor.Parameterscontext The context where the ListView associated with thisSimpleListItemFactory is runninglayout resource identifier of a layout file that defines 阅读全文
posted @ 2012-02-03 09:31 higirle 阅读(969) 评论(0) 推荐(0) 编辑