之前自己一直手工编写函数来实现dip值到px值,今天无意中发现android本身就带有类似的函数来实现这种转换过程,就是 TypedValue.applyDimension public class TypedValueApiUseDemoActivity extends AppCompatActivity { public static final String TAG = "xp.chen"; @Override protected void onCreate(Bundle sav…
https://www.asp.net/web-api/overview/formats-and-model-binding/json-and-xml-serialization https://code.msdn.microsoft.com/Support-format-in-ASPNET-e3785b2a 1,Web API 框架是一个面向 Http 协议的通信框架.相对于 WCF 而言,Web API 只面向于 Http 协议设计,而且没有 WCF 那么繁琐的配置. Web API 的开发…
假设有存储过程:proc_test2 create proc proc_test2 @Id int begin as declare @sql varchar(max) @sql = 'select * from test2 where 1=1' if @Id <> 0 set @sql += ' and Id = ' +@Id exec (@sql) end 存储过程需要的参数是int类型,按道理直接传值(+@Id)是没有问题的,但是在执行存储过程的时候,却弹出 “sql 在将 nvarch…
ColourClock 将时间值转换成背景色 https://github.com/bennyguitar/ColourClock This project converts Time to Hex/RGB, and is quite beautiful to look at. This was HEAVILY inspired byhttp://thecolourclock.co.uk and really, all credit goes to them. 这个工程是用来把时间值转换为Hex…