码迷,mamicode.com
首页 >  
搜索关键字:density    ( 262个结果
《第一行代码--Android》阅读笔记之界面设计
1.单位dp、dip、sp、pt、px、in、mm这里引用StackOverFlow上的一个解答:pxis one pixel.spis scale-independent pixels.dipis Density-independent pixels.(dip == dp is ture)Here...
分类:移动开发   时间:2015-08-11 20:53:50    阅读次数:275
如何在代码中设置以dp为单位的长度
获取当前屏幕的密度系数 ,并设置控件以dp为单位的长宽 float density = getResources().getDisplayMetrics().density; params = new LayoutParams((int) (10 * density), (int) (10 * de...
分类:其他好文   时间:2015-08-09 23:57:22    阅读次数:117
Android屏幕density, dip等相关概念总结
1、几个术语 VGA、HVGA、QVGA、WVGA、WQVGA 这些术语都是指屏幕的分辨率。 VGA:Video Graphics Array,即:显示绘图矩阵,相当于640×480 像素; HVGA:Half-size VGA;即:VGA的一半,分辨率为480×320; QVGA...
分类:移动开发   时间:2015-07-28 16:09:27    阅读次数:202
BitmapFactory.Options详解
public?Bitmap inBitmap If set, decode methods that take the Options object will attempt to reuse this bitmap when loading content. public int inDensity The pixel density to use for the bitmap. pub...
分类:其他好文   时间:2015-07-25 15:24:03    阅读次数:146
Hadoop实现Clustering by fast search and find of density peaks (2)
本篇博客参考:Clustering by fast search and find of density peaks论文以及http://www.cnblogs.com/peghoty/p/3945653.html。 使用版本:Hadoop版本:2.6.0,Myeclipse:10.0 本地集群情况:node101  (主节点,namenode,datanode,ResourceManager,N...
分类:其他好文   时间:2015-07-24 18:32:48    阅读次数:138
转载:百为STM32开发板教程之十一——NOR FLASH
转载:http://bbs.21ic.com/icview-586199-1-1.html百为STM32开发板教程之十一——NOR FLASH参考文档:百为stm32开发板光盘\st官方参考资料\Application notes\AN2784 Using the high-density STM3...
分类:其他好文   时间:2015-07-16 00:23:00    阅读次数:391
Android获取屏幕尺寸大小
官方API:A structure describing general information about a display, such as its size, density, and font scaling.To access the DisplayMetrics members, in...
分类:移动开发   时间:2015-07-10 11:08:19    阅读次数:133
基于密度的聚类之Dbscan算法
一.算法概述 DBSCAN(Density-Based Spatial Clustering of Applications with Noise)是一个比较有代表性的基于密度的聚类算法。与划分和层次聚类方法不同,它将簇定义为密度相连的点的最大集合,能够把具有足够高密度的区域划分为簇,并可在噪声的....
分类:数据库   时间:2015-07-05 23:49:55    阅读次数:442
Android dpi、dip、px、分辨率、屏幕尺寸、density 关系以及换算
一、介绍dip:设备独立像素(Deviceindependentpixel),一个基于density的抽象单位;dp:在早期的Android版本里多使用dip,后来为了与sp统一就建议使用dp这个名字;px:像素(Pixel),1px代表屏幕上一个物理的像素点,px单位不被建议使用,因为同样1px,在不同手机上显示的实..
分类:移动开发   时间:2015-06-20 01:39:31    阅读次数:218
Vanets Routing paper reading
1、A VANET Routing based on the Real-time Road Vehicle Density in the City Environment,Hyun Yu , Joon Yoo , Sanghyun Ahn. ICUFN 2013. 在这个VANET路由协议中,每辆....
分类:Web程序   时间:2015-06-08 19:04:11    阅读次数:144
262条   上一页 1 ... 15 16 17 18 19 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!