http://chaosinmotion.com/blog/?p=179 reference string color dimension boolean integer float fraction enum flag…
https://www.vmware.com/support/developer/vc-sdk/visdk400pubs/ReferenceGuide/timezone.html Valid timeZone values are based on the tz (timezone) database used by Linux and other Unix systems. The values are strings (xsd:string) in the form "Area/Locati…
报错信息: Caused by: java.sql.SQLException: Io 异常: Invalid connection string format, a valid format is: "host:port:sid"     at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)    at oracle.jdbc.driver.DatabaseError.throwSql…
1    自定义标签 这是我的模板项目目录     既然想像 android:text  那样使用自己的标签,那么首先得有标签. 在 res/values/ 下我新建了个 mm_tag.xml (切记不可出现大写,只能是 小写字母.数字.下划线) 第一步:    自定义 标签 mm_tag.xml <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable…
为View加入自己定义XML属性 Android中的各种Widget都提供了非常多XML属性,我们能够利用这些XML属性在layout文件里为Widget的属性赋值. 例如以下所看到的: <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" /> 我们能够通过TextV…
前言: attr 在前一篇文章<Android 自定义view -- attr理解>已经简单的进行了介绍和创建,那么这篇文章就来一步步说说attr的简单使用吧 自定义view简单实现步骤 (1)首先创建attrs自定义属性文件名称,定义属性以及相关数据类型 (2)再次创建自定义view,然后读取相关属性完成需要的view相关布局.绘制等工作 (3)最后在xml布局文件中引用或者直接在代码中new一个相关对象进行使用 任务需求 为了能够简单的练习演示attr 相关使用,我现在自己规定了如下需求…
The access log formatting variables follow the Apache variables:     %b result content length %D time taken to complete the request in microseconds (since 3.0.16) %h remote IP addr %{xxx}i request header xxx %{xxx}o response header xxx %{xxx}c cookie…
Original link: http://windowssucks.wordpress.com/win-registry-uninstall-values/ ---------------------Following content is only used for knowledge sharing. --------------------- (It seems this wordpress theme can’t handle a table this big, go here for…
By combining the NTSTATUS into a single 32-bit numbering space, the following NTSTATUS values are defined. Most values also have a defined default message that can be used to map the value to a human-readable text message. When this is done, the NTST…
python的format方法可谓相当强大,它可以接受不限个参数... 1.通过位置来格式化字符串,注意format传入的参数的位置要正确{0}对应第1个参数,{1}对应第2个参数... >>> '{0},{1}'.format('kzc',18) 'kzc,18' >>> '{},{}'.format('kzc',18) 'kzc,18' >>> '{1},{0},{1}'.format('kzc',18) '18,kzc,18' >>&…