android自定义View绘制的时候,会有很多情况下要与字体打交道,涉及到字体宽度、高度的时候要特别注意一下几个概念,见图:
baseLine:一行文字的底线。
Ascent: 字符顶部到baseLine的距离。
Descent: 字符底部到baseLine的距离。
Leading: 字符行间距。
Jav...
分类:
移动开发 时间:
2015-05-15 15:34:23
阅读次数:
159
在官网下载的mysql-5.6.24-win32.zip,解压到d盘配置环境变量path D:\Program Files\mysql创建配置文件my.ini[mysqld] # Remove leading # and set to the amount of RAM for the most ....
分类:
数据库 时间:
2015-05-03 20:31:15
阅读次数:
206
题目传送: UVA - 11029
思路:后三位可以直接快速幂取模,然后前三位可以有两种做法,一个是利用double,一个是利用公式法,具体看代码吧
注意,后三位不足三位要补0,即用%03d
AC代码①:
#include
#include
#include
#include
#include
#include
#include
#include
#...
分类:
其他好文 时间:
2015-04-28 09:47:43
阅读次数:
235
An integer overflow in Android media could be exploited to get media_server permission(CVE-2015-1530)Integer overflow leading to heap corruption while...
分类:
移动开发 时间:
2015-04-21 17:29:58
阅读次数:
690
题目大意: 输入两个数,分别是n,k,求nk的前三位,后三位,保证nk至少有6位。解题思路: 求前三位,因为后面的数字可能会影响前三位,double可以保证一部分精度又不至于会溢出,所以可以用二分快速幂+double来求前三位。 求后三位,因为前面的数字不会影响到后三位,所以不用考虑精度,可直...
分类:
其他好文 时间:
2015-04-18 17:29:51
阅读次数:
146
自己在测试往内核添加模块时,用
make menuconfig 配置
结果警告如下:
原因是这个测试的Kconfig文件中的 comment值前有空格,如下:
去掉这个空格就好了,实际上,menu 的值如果前面有空格,也会报这个警告。...
分类:
系统相关 时间:
2015-04-14 19:48:37
阅读次数:
213
Problem C
Leading and Trailing
Time limit: 2 seconds
Apart from the novice programmers, all others know that you can’t exactly represent numbers raised to some high power. ...
分类:
其他好文 时间:
2015-04-12 12:07:31
阅读次数:
172
header files:#include // use String Object you should leading-in it (ps:not string.h,the string.h is belong to the C)#include // the input and outpu.....
分类:
编程语言 时间:
2015-04-09 19:02:54
阅读次数:
152
最近看了下zookeeper的源码,先整理下leader选举机制先看几个关键数据结构和函数服务可能处于的状态,从名字应该很好理解public enum ServerState { LOOKING, FOLLOWING, LEADING, OBSERVING;}选票参数,还有Notification....
分类:
其他好文 时间:
2015-04-09 13:43:32
阅读次数:
159
1.基准点是baseline2.ascent:是baseline之上至字符最高处的距离3.descent:是baseline之下至字符最低处的距离4.leading:是上一行字符的descent到下一行的ascent之间的距离,也就是相邻行间的空白距离5.top:是指的是最高字符到baseline的...
分类:
其他好文 时间:
2015-03-21 19:50:57
阅读次数:
143