Android VIEW 中的visibility属性,在API中的描述为:Controls the initial visibility of the view.[控制VIEW的初始可见性]。 其中包含三个参数: * 默认值为visible,可见。这里需要注意的是 "invisible" 和 "....
分类:
移动开发 时间:
2014-12-24 16:06:43
阅读次数:
172
display:none和visible:hidden都能把网页上某个元素隐藏起来,但两者有区别:display:none ---不为被隐藏的对象保留其物理空间,即该对象在页面上彻底消失,通俗来说就是看不见也摸不到。visible:hidden--- 使对象在网页上不可见,但该对象在网页上所占的空间...
分类:
其他好文 时间:
2014-12-22 19:33:02
阅读次数:
185
Android中android:visibility的3中属性的剖析 - Kevin Gao - 博客园 在Android中控件或者布局的可见性android:visibility有3中情况,如View.VISIBLE,View.UNVISIBLE,View.GONE这3中情况。View.VISIB...
分类:
移动开发 时间:
2014-12-18 14:50:41
阅读次数:
175
把Cordova 升级到 3.6.3 版本后,在变异的使用出现了如下问题
The error:
/Volumes/local.uhmuhm.net/projectxxx/htdocs/phonegap/src/Projectxxx/platforms/ios/Projectxxx/Classes/MainViewController.m:154:19: error: no visible @i...
分类:
移动开发 时间:
2014-12-18 10:27:45
阅读次数:
175
题意:UVa 10820这两个题是同一道题目,只是公式有点区别。给出范围为(0, 0)到(n, n)的整点,你站在原点处,问有多少个整点可见。对于点(x, y), 若g = gcd(x, y) > 1,则该点必被点(x/g, y/g)所挡住。因此所见点除了(1, 0)和(0, 1)满足横纵坐标互素。...
分类:
其他好文 时间:
2014-12-18 06:48:18
阅读次数:
144
zabbix配置了解Hostszabbix中的hosts就是指你想监控的设备,如服务器、工作站、交换机等等。如果你想监控某个主机X的某个变量,你必须先创建一个主机X,然后再给该主机添加监控items。hosts可以被有组织的安排进hostgroup中。通过zabbix的前端web界面配置hosts:?1Configuratio..
分类:
其他好文 时间:
2014-12-17 19:03:28
阅读次数:
373
Show:
Use Show to set the form Visible property to true and to bring the form to the front of other forms on the screen.
ShowModal:
Use ShowModal to show a form as a modal form. A modal form is ...
分类:
其他好文 时间:
2014-12-17 18:28:10
阅读次数:
219
1,Overflow内容溢出时的设置overflow 水平及垂直方向内容溢出时的设置 overflow-x 水平方向内容溢出时的设置 overflow-y 垂直方向内容溢出时的设置以上三个属性设置的值为visible、scroll、hidden、autovisible 默认值。使用该值时,无论设置的...
分类:
Web程序 时间:
2014-12-16 11:38:41
阅读次数:
181
$ie=new-object-com"InternetExplorer.Application"
$ie.navigate("http://www.news.baidu.com/")
$ie.visible=$true
sleep-milliseconds2500
$ID=$ie.Document.getElementById(‘focus-top‘)
$ID1=$ID.getElementsByTagName(‘li‘)
$ID2=$ID1|where{$_.className-contains"hdli..
分类:
其他好文 时间:
2014-12-14 07:12:52
阅读次数:
164
$ie=new-object-com"InternetExplorer.Application"
$ie.navigate("http://www.qiushibaike.com/")
$ie.visible=$true
sleep-milliseconds2500
$ID=$ie.Document.getElementById(‘qiushi_tag_96334609‘)
$ID1=$ID.getElementsByTagName(‘div‘)
$ID2=$ID.childNodes|where{$_.c..
分类:
其他好文 时间:
2014-12-14 07:10:51
阅读次数:
171