1、看文档Develop/API Guides/App Resources/Drawable/Shape Drawable
单词:corners : 角 ; gradient :梯度; solid:固定的; stroke: 边框--可以做下划线
Rectangle : 矩形;dash :破折号 gap:间隙;
2、拷贝实例代码,文件命名(gradient_box.x...
分类:
移动开发 时间:
2015-03-31 11:01:09
阅读次数:
459
数据开发1.按姓氏笔画排序:Select * From TableName Order By CustomerName Collate Chinese_PRC_Stroke_ci_as //从少到多2.数据库加密:select encrypt('原始密码')select pwdencrypt('原始...
分类:
数据库 时间:
2015-03-28 15:45:33
阅读次数:
179
这是个简单的支持多点触摸的画板控件, 绘制功能基于WPF InkCanvas,也是我drawTool系列文章的开篇。阅读该文章后可能产生一些问题:1. 如果对生成的笔迹对象进行控制 如果要对生成的stroke笔迹进行控制,这里需要单独用一个基于UIElement的对象关联到笔迹对象,例如Polyli...
分类:
其他好文 时间:
2015-03-18 15:25:05
阅读次数:
428
Android中要实现如下图的效果:
这个要在真机中才能看出效果!!
switch_button_left_checked.xml
<stroke
...
分类:
移动开发 时间:
2015-03-17 14:18:17
阅读次数:
175
虚线也可以看成是一段段的实线组成的,而实线是利用context.moveTo(x,y);context.lineTo(x2,y2);context.stroke();
那么我们就可以利用context的基本方法来完成虚线的实现原理,如下:
var context = document.getElementById('canvas').getContext('2d');
//求斜边长度
fun...
分类:
Web程序 时间:
2015-03-16 16:34:49
阅读次数:
219
1.paint.setStyle(Paint.Style.STROKE)
// radius="100dp"
// interRadius="40dp"
// linearWidth="10dp"
// stokenWidth="40dp"
mPaint=new Paint();
mPaint.setStyle(Paint.Style.STRO...
分类:
其他好文 时间:
2015-03-13 14:22:06
阅读次数:
145
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:
其他好文 时间:
2015-03-05 20:48:47
阅读次数:
149
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions ...
分类:
其他好文 时间:
2015-02-25 11:31:55
阅读次数:
147
实际上,窗口聚合与分组聚合在功能上是相同的,唯一的差别是,分组聚合是通过GROUP BY进行分组计算,而窗口聚合是通过OVER子句定义的窗口进行计算。这个所谓的窗口,实际上也是一组数据。SQL Server提供的聚合函数包括:AVG、CHECKSUM_AGG、COUNT、COUNT_BIG、GROUPING、GROUPING_ID、MAX、MIN、SUM、STDEV、STDEVP、VAR、VARP。除了GROUPING和GROUPING_ID,都可以跟在OVER子句后面用于窗口的聚合计算。...
分类:
数据库 时间:
2015-02-12 07:04:16
阅读次数:
366