一、度量单位(dp,sp,px)px是Pixels的缩写,是常用的像素单位,对应的是屏幕上的点。在不同分辨率的屏幕上,使用px作为单位的组件尺寸会不一致。相同px的组件,分辨率越大,实际显示尺寸越小dip/dpdp(density-independent pixel)是与密度无关的像素单位,也就是d...
分类:
移动开发 时间:
2014-12-03 12:05:11
阅读次数:
193
1. 单位- px(pixel): 普通的像素点描述,位图中的一个颜色点(RGBA或者YUV)- dip(device independent pixels): 设备独立像素。- dp: 与dip一样。- pt(point): 标准长度单位。1pt = 1.0 / 72 (in)。- sp(scal...
分类:
移动开发 时间:
2014-11-30 00:15:13
阅读次数:
241
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.参考:http://xpentium.blog.163.com/b...
分类:
其他好文 时间:
2014-11-29 17:32:47
阅读次数:
168
Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.Analysis:For each position (i,j),...
分类:
其他好文 时间:
2014-11-24 06:28:38
阅读次数:
192
1. 引言与PCA类似,Independent Components Analysis(ICA)同样是要找到一组新基去表示数据。但是目标大不相同。为了阐述动机,举一个例子,考虑“鸡尾酒会问题”。在酒会上,有 n 个演讲者同时讲话,房间里面的每一个麦克风都会记录所有演讲者声音混合起来的音频,但是由于每...
分类:
其他好文 时间:
2014-11-23 14:21:54
阅读次数:
316
给定一个只含0和1的数组,求含1的最大矩形面积。Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.这样的题一般看来都...
分类:
其他好文 时间:
2014-11-19 23:44:02
阅读次数:
316
Let $x,y,z$ be linearly independent vectors in $\scrH$. Find a necessary and sufficient condition that a vector $w$ mush satisfy in order that the bil...
分类:
其他好文 时间:
2014-11-19 18:28:24
阅读次数:
183
Maximal RectangleGiven a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones and return its area.Show TagsHave yo...
分类:
其他好文 时间:
2014-11-19 08:35:19
阅读次数:
207
1. dip: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这 这个,不依赖像素。 这里要特别注意dip与屏幕密度有关,而屏幕密度又与具体的硬件有关,硬件设置不正确,有可能导...
分类:
移动开发 时间:
2014-11-18 23:30:10
阅读次数:
250
1.距离单位之px---像素2.距离单位之dp---设备无关像素3.距离单位之sp4.控件的外边距与内边距dpi(dots per inch) 每英寸显示像素个数dp = dip (device Independent pixels)设备无关像素px = dp*(dpi/160)在dpi为160的屏...
分类:
移动开发 时间:
2014-11-18 00:03:51
阅读次数:
249