1. 图片背景的设置。1.1 background:url(images/banner_01.jpg)
center top no-repeat; 这样设置的话,收缩窗口后,图片会慢慢被遮挡。1.2
img标签,设置width:100%的方式,收缩图片后,图片会慢慢收缩变形。2.窗口缩小后,出现滚....
分类:
其他好文 时间:
2014-06-10 16:14:20
阅读次数:
201
Given a binary tree, check whether it is a
mirror of itself (ie, symmetric around its center).For example, this binary tree
is symmetric: 1 / \ ...
分类:
其他好文 时间:
2014-06-10 11:51:42
阅读次数:
213
题目
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ 2 2
/ \ / 3 4 4 3
...
分类:
其他好文 时间:
2014-06-08 18:12:04
阅读次数:
248
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal" >
android:layout_width="wrap...
分类:
其他好文 时间:
2014-06-08 17:58:54
阅读次数:
633
关于+ - ~有意思的一段C代码
问题是钟哥几天前在automation的群里面抛出来的。
code:
#include
int main(int argc,char* argv[])
{
int a = 7;
int b = 1;
printf("before process,a = %d,b = %d\n",a,b);...
分类:
其他好文 时间:
2014-06-08 16:29:03
阅读次数:
215
ImageView的Scaletype决定了图片在View上显示时的样子,如进行何种比例的缩放,及显示图片的整体还是部分,等等。设置的方式包括:1.
在layout xml中定义android:scaleType="CENTER"2. 或在代码中调用imageView.setScaleType(Im...
分类:
移动开发 时间:
2014-06-08 00:36:23
阅读次数:
342
WebDriver IntroductionA different way of
automating the browser.. Create a browser-specific driver to control the browser
directly and have to do this...
分类:
其他好文 时间:
2014-06-07 07:14:40
阅读次数:
290
(1)Tiles;(2)Notifications;(3)Action Center。
DNS:domainnamesystem为什么她会存在?whydoesitexist?比如说,一个数据中心的2000台服务器,如果是记住IP地址的话,比如说协会的机房他们使用的是IP地址来记录,但是呢,这样来管理,第一是太过混乱,第二是机房本身太小域名解析系统:举例来说:索尼移动的机房:内部网络工..
分类:
其他好文 时间:
2014-06-04 13:01:52
阅读次数:
470
【题目】
Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).
For example, this binary tree is symmetric:
1
/ 2 2
/ \ / 3 4 4 3
But the following is not:
1
/ 2 2
\ 3 3
No...
分类:
其他好文 时间:
2014-06-02 10:56:14
阅读次数:
237