Source: http://cpprocks.com/wp-content/uploads/c++11-regex-cheatsheet.pdf
分类:
编程语言 时间:
2014-06-16 00:05:54
阅读次数:
441
在layout_width設置為fill_parent的時候,layout_weight所代表的是你的控件要優先盡可能的大,但這個大是有限度的,即fill_parent. 在layout_width設置為wrap_content的時候,layout_weight所代表的是你的控件要優先盡可能的小,但...
分类:
其他好文 时间:
2014-06-15 22:57:20
阅读次数:
325
header("Content-Type:image/gif"); header('Content-Disposition: attachment; filename="logo3333.gif"'); header('Content-Length:'.filesize("logo.gif"));....
分类:
其他好文 时间:
2014-06-14 23:25:48
阅读次数:
220
默认安装好ftp软件包匿名用户是可以下载的。匿名以后可以上传:anon_upload_enable=YES# getsebool -a | grep ftpallow_ftpd_anon_write --> onchcon -t public_content_rw_t pubchmod 775 pu...
分类:
系统相关 时间:
2014-06-14 19:21:33
阅读次数:
344
1. 使用NuGet安装dotless2. 在BundleConfig中配置var less = new Bundle("~/bundles/less").Include("~/Content/less/global.less");less.Transforms.Add(new LessTransf...
分类:
Web程序 时间:
2014-06-14 19:08:20
阅读次数:
328
图像ping 1、简介: 图像ping是与服务器进行简单、单向的跨域通信的一种方式,请求的数据是通过查询字符串的形式发送的,而相应可以是任意内容,但通常是像素图或204相应(No Content)。 2、使用方法:var img = new Image();img.onload = img....
分类:
Web程序 时间:
2014-06-14 18:50:48
阅读次数:
330
首先介绍几个写类间关系和设计模式的技术博文http://www.360doc.com/content/14/0613/21/18117192_386381321.shtmlhttp://blog.csdn.net/wuzhekai1985/article/details/6675799http://...
分类:
编程语言 时间:
2014-06-14 18:21:02
阅读次数:
446
经过 研究 实现了自定义 键盘 ,支持随意拖动 和数字及其他字符输入
下面是主要的代码 和使用方法
import android.content.Context;
import android.util.Log;
import android.view.GestureDetector;
import android.view.GestureDetector.OnGestureL...
分类:
移动开发 时间:
2014-06-14 11:05:44
阅读次数:
401
网站的内容页面,经常要放图片,如果图片太大会撑出,影响页面美观。如果只是用css限制图片的最大宽度,会引起图片的变形,本文建议还是用js来实现,实现方式如下:注意,引用本方法前前先引入jQuery。$(".sec-content img")这里是文章内容中的图片筛选。
分类:
编程语言 时间:
2014-06-14 08:23:39
阅读次数:
331
MainActivity如下:
package cc.testscroller1;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.os.Bundle;
import...
分类:
移动开发 时间:
2014-06-13 20:48:10
阅读次数:
326