码迷,mamicode.com
首页 >  
搜索关键字:long position    ( 28572个结果
Get temp path via windows API
Private Const MAX_PATH As Long = 260Private Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nSize As Long, ByVal lpBuffer As S...
分类:Windows程序   时间:2014-08-07 18:35:21    阅读次数:271
Android:再按一次退出程序
感觉这种效果比较友好//两秒内按返回键两次退出程序 private long exitTime = 0; @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if(keyCode =...
分类:移动开发   时间:2014-08-07 18:20:10    阅读次数:272
div table 属性
div:1、基本属性:width, height, left, top, background-color(当设置为transparent时表示透明)2、定位属性:position: absolute/relativeabsolute时,位置固定;relative时,位置会随着内容的实际情况进行浮动...
分类:其他好文   时间:2014-08-07 12:45:40    阅读次数:213
左边导航的制作(置顶)
一:页面代码 登录 0 客服 顶部二:Css样式/*侧边栏(购物车,客服)*/.right_lan{ position:fixed;right:0; _right:-1px; top:0; width:35px; height:100%;_height:400px; backgrou...
分类:其他好文   时间:2014-08-07 12:12:39    阅读次数:228
PyCharm每日技巧-1
To navigate to the declaration of a class, method or variable used somewhere in the code, position the caret at the usage and press Ctrl+B. You may al...
分类:其他好文   时间:2014-08-07 12:12:10    阅读次数:315
【黑马程序员】————数据类型总结
------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------一、基本数据类型1.int1> long int、long:8个字节 %ld2> short int、short:2个字节 %d %i3> unsigned int、unsigned:4个字节 %....
分类:其他好文   时间:2014-08-07 12:09:59    阅读次数:203
extended_gcd(扩展欧几里德算法) 青蛙的约会
#include #include long long gcd(long long x,long long y){ if(y==0) { return x; } return gcd(y,x%y);}void extended_gcd(long long a,l...
分类:其他好文   时间:2014-08-07 09:43:09    阅读次数:153
P158
#include typedef union{ long x[2]; int y[4]; char z[8]; }MYTYPE; MYTYPE them; main() { printf("%d\n",sizeof(them)); }...
分类:其他好文   时间:2014-08-06 23:14:42    阅读次数:251
Turn the pokers
Problem DescriptionDuring summer vacation,Alice stay at home for a long time, with nothing to do. She went out and bought m pokers, tending to play po...
分类:其他好文   时间:2014-08-06 22:52:52    阅读次数:326
background image position问题
在CSS中,背景图片的定位方法有3种: 1)关键字:background-position: top left; 2)像素:background-position: 0px 0px; 3)百分比:background-position: 0% 0%; 注意,第一个表示水平,不是top,第二个是...
分类:其他好文   时间:2014-08-06 22:51:02    阅读次数:253
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!