http://www.appcoda.com/background-transfer-service-ios7/http://www.raywenderlich.com/51127/nsurlsession-tutorialhttps://developer.apple.com/library/io...
分类:
移动开发 时间:
2014-06-18 20:34:57
阅读次数:
235
css:#profile_block{text-align:center;position:absolute; top:60px; right:10px;}#blog-calendar{border-radius: 7px;background:#fff;}#p_b_follow{padding-t...
分类:
其他好文 时间:
2014-06-18 19:09:20
阅读次数:
198
windows 环境如何恢复 (oracle 11g grid) ocr voting 损坏的集群
oracle 11g 以后 ocr 可以放到 asm 磁盘上,而ASM的启动依赖于ocr和votedisk,所以在丢失ocr或votedisk 会导致cluter无法正常启动
如果原来的ocr 位置已经不存在,则必须使用相同的名字在原来相同的位置创建一个空 OCR 。...
分类:
数据库 时间:
2014-06-18 12:42:06
阅读次数:
241
XML属性
相关方法
说明
android:alpha
setAlpha(float)
设置该组件的透明度
android:background
setBackgroundResource(int)
设置该组件的背景颜色
android:clickable
setClicka...
分类:
其他好文 时间:
2014-06-17 21:45:28
阅读次数:
199
项目中用的grunt-contrib-less, 写了以下less代码.mapfix{ position: fixed; top:10px; width: 430px; z-index: 100; background: #fff; -position:absolute; top:exp...
分类:
Web程序 时间:
2014-06-17 15:26:30
阅读次数:
239
先解释下,background:transparent,默认在IE上会被解析成 background: none transparent scroll repeat 0% 0%
transparent表示透明无颜色
none 表示没有设置背景图片
repeat 表示图片重复
scroll 表示背景图片随浏览器下拉而滚动
0%水平位置在x0
0%垂直位置在y0...
分类:
其他好文 时间:
2014-06-16 22:29:27
阅读次数:
298
报这种错误:BackgroundIndexerCrashRecoveryjava.lang.StackOverflowError解决办法:看看原来项目的jar包有没有错的。右击项目->buildpath->configureBuidPath查看libraries如果有错误的,把jar包删掉,如果有需要的话,添加正确的jar包即可。由于每个项目的jar包是不同..
分类:
其他好文 时间:
2014-06-16 18:19:47
阅读次数:
375
不知道怎么起标题,就这样了。目前主要讲两个方面内容:代码方式 设置RadioButton的 android:button 、 android:background 等属性为 @null;代码方式 通过布局模板动态创建固定参数的RadioButton等控件对象1、代码设置@null// 这里不能用nu...
分类:
其他好文 时间:
2014-06-16 13:35:24
阅读次数:
204
linux下Oracle11g RAC搭建(六)
五、校验安装前的环境
root身份下完成解压grid、database安装包
[grid@node1 soft]$ su -
Password:
[root@node1 ~]# cd /soft
[root@node1 soft]# ls
asm linux_11gR2_database_1of2.zip lin...
分类:
数据库 时间:
2014-06-15 15:30:03
阅读次数:
714
jQuery实现table隔行换色和鼠标经过变色
一、隔行换色
$("tr:odd").css("background-color","#eeeeee");
$("tr:even").css("background-color","#ffffff");
或者一行搞定:
$("table tr:nth-child(odd)").css("background-color","#eeeeee");
二、鼠标经过变色
$("tr").live({
mouseover:function(){
$(this)....
分类:
Web程序 时间:
2014-06-15 10:15:32
阅读次数:
329