mListView.setSelectionFromTop(position,
y);利用上述方法设置Item在ListView中的位置。y为Item距离ListView顶端的距离,也就是图中的1;计算方式:1 = 2 - 3
-4坐标计算:int[] location = new int[2];v...
分类:
微信 时间:
2014-06-11 22:03:32
阅读次数:
516
原题地址:https://oj.leetcode.com/problems/search-insert-position/题意:Given
a sorted array and a target value, return the index if the target is found. If
n...
分类:
编程语言 时间:
2014-06-11 11:28:40
阅读次数:
349
其实话说一直以来也没真正去理解好position:relative的用法的真实意义。
我想很多人实实在在用的多都是position:relative和position:absolute结合起来一起用的。
position属性是用四种定位。默认的是static。 position:absol...
分类:
Web程序 时间:
2014-06-11 11:27:56
阅读次数:
303
原始form表单值获取方式(手动):$.ajax({
type: "POST",
url: "ajax.php",
data: "Name=摘取天上星&position=IT技术",
success: function(msg){alert(msg);},
error: function(error){alert(error);}
});JQ serialize()...
分类:
Web程序 时间:
2014-06-08 16:19:01
阅读次数:
280
LayoutsIn this document 在这个文档Write the
XML写XML文件Load the XML Resource加载xml资源Attributes属性ID IdLayout
Parameters布局参数Layout Position 布局位置Size, Padding .....
分类:
其他好文 时间:
2014-06-07 22:05:56
阅读次数:
399
http://www.qingdou.me/2142.htmlCSS书写顺序1.位置属性(position,
top, right, z-index, display, float等)2.大小(width, height, padding,
margin)3.文字系列(font, line-heig...
分类:
Web程序 时间:
2014-06-06 14:09:25
阅读次数:
393
实现一个功能:鼠标移动到一个图片左边显示左箭头,移动到右边显示右箭头。 实现方法:一个img上面定位两个div,div的样式如下:.toleft {
width: 200px; height: 300px; position: abso...
分类:
Web程序 时间:
2014-06-06 10:48:27
阅读次数:
218
各种新技术的出现,推动着Web前端技术飞速发展,在提升用户体验的同时也方便开发者;在前端优化时,我们使用CSSSprite技术,把多个图片合在一张图片上,然后通过background-image,background-position来定位现实不同效果,这样来达到减少HTTP请求,毕竟HTTP请求是...
分类:
Web程序 时间:
2014-06-06 09:58:28
阅读次数:
288
整个图标分成三部分chart title,chart 的plot还有chart的
legend三个部分需要对他们分别设置字体就对了。 先看解决方法( 把这几个全部设置了,都搞定了就可以了): 标题乱码
chart.getTitle().setFont(new Font("宋体", Font.BOLD...
分类:
其他好文 时间:
2014-06-05 16:05:40
阅读次数:
349
在CSS中,背景图片的定位方法有3种: 1)关键字:background-position: top
left; 2)像素:background-position: 0px 0px; 3)百分比:background-position: 0%
0%;上面这三句语句,都将图片定位在背景的左上角,...
分类:
Web程序 时间:
2014-06-05 15:56:30
阅读次数:
279