码迷,mamicode.com
首页 >  
搜索关键字:pt px pixel    ( 3374个结果
css限制图片大小,避免页面撑爆
/*==========限制图片大小======避免页面撑暴========*/img { max-width:100%;width:expression(width>669?"100%":width+"px");}--说明 .content img { max-width:100%;width:e...
分类:Web程序   时间:2014-05-27 01:38:06    阅读次数:292
创建兼容android activity的OSGI bundle
创建兼容android activity的OSGI bundle...
分类:移动开发   时间:2014-05-22 12:20:00    阅读次数:410
Android屏幕大小适配问题解决
一、一些基本概念 1、长度(真实长度):英寸、inch 2、分辨率:density 每英寸像素数  dpi(密度) 3、像素:px 4、dip的公式:px /dip=dpi/160  所以 dip 类似于英寸、长度(dp=dip,sp类似于dip)  dip=160*inch dip= 160/dpi * px 当dip一定时,dpi 越大,px就越大...
分类:移动开发   时间:2014-05-20 17:04:59    阅读次数:494
[2014.5.18][SuperPixel] 也看Greg.Mori.代码的配置与执行
SuperPixel最初由Xiaofeng Ren提出(ICCV 2003),但我在网络上尚未找到有关这个最初想法的源代码;比较容易获得的倒是Greg Mori(CVPR 2004,ICCV 2005)基于Xiaofeng Ren算法做的代码https://www.cs.sfu.ca/~mori/research/superpixels/.代码包分为32bit版和64bit版. 这个代码用到了C...
分类:其他好文   时间:2014-05-20 14:43:27    阅读次数:395
A little problem for pt-pmp
We use the pt-pmp (a variety for pmp !http://poormansprofiler.org/! by Percona) tool a lot to analyze our online MySQL problem.But when we execute the...
分类:其他好文   时间:2014-05-18 20:04:54    阅读次数:425
Android 多分辨率机器适配
假设有如下分辨率机器: 800 x 480 1024 x 600 1024 x 768 1280 x 800 1920 x 1200  2048 x 1536 总共六种类分辨率机器,如果按照dp为单位来细分可以分为几种呢? 首先通过context.getResources().getDisplayMetrics().density获取到当前机器的屏幕密度,然后通过dp = px/d...
分类:移动开发   时间:2014-05-18 05:46:38    阅读次数:340
C语言深度剖析自测题8解析
#include int main(void) { int a[5] = {1, 2, 3, 4, 5}; int* ptr1 = (int*)(&a + 1); int* ptr2 = (int*)((int)a + 1); printf("%x, %x\n", ptr1[-1], *pt...
分类:编程语言   时间:2014-05-18 02:49:18    阅读次数:271
主从复制1062错误解决方法
当复制中断的时候,我们常用的方法是跳过错误,比如SET GLOBAL SQL_SLAVE_SKIP_COUNTER =1或者直接slave-skip-errors=1062,这样确实解决了问题,恢复了复制。但是久而久之主从数据相差就很大了。对于复制正常以后,我们还需要使用pt-table-check...
分类:其他好文   时间:2014-05-18 01:10:47    阅读次数:404
CareerCup之1.6 Rotate Image
【题目】 原文: 1.6 Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. Can you do this in place? 译文: 一张图像表示...
分类:其他好文   时间:2014-05-15 05:43:35    阅读次数:240
关于Android WebView内容不同屏幕兼容处理
最近团队里项目开发APP时,其中有个界面要用到WebView来显示,而不用原生的控件。开发这个界面的时候遇到一个问题,就是Android的碎片化导致有众多屏幕分辨率,不同分辨率的屏幕对这个界面WebView内的控件大小兼容的问题。由于Android原生控件大小是由dp控制,而不是像素px,所以在不同...
分类:移动开发   时间:2014-05-14 13:05:50    阅读次数:318
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!