1.showAtLocation 例如:showAtLocation(findViewById(R.id.search_ib), Gravity.TOP | Gravity.RIGHT,10, 10); 第一个参数:这个view是要能获取到window唯一标示的(也就是只要能获取到window 标示 ...
分类:
移动开发 时间:
2017-04-07 20:33:14
阅读次数:
280
There's an alien whose name is Marjar. It is an universal solder came from planet Highrich a long time ago. Marjar is a strange alien. It needs to gen ...
分类:
其他好文 时间:
2017-04-07 01:01:56
阅读次数:
193
1 数据库建好以后,需要增加新字段的经历 2 3 ruby script/rails generate migration add_name_to_product name:string 4 rake db:migrate ...
分类:
数据库 时间:
2017-04-06 17:40:24
阅读次数:
205
var chars = ['0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F','G','H','I','J','K','L','M','N' ...
分类:
Web程序 时间:
2017-04-06 15:30:26
阅读次数:
119
图像噪声使图像在获取或是传输过程中收到随机信号干扰,妨碍人们对图像理解及分析处理的信号。很多时候将图像噪声看做多维随机过程,因而描述噪声的方法完全可以借用随机过程的描述,也就是使用随机过程的描述,也就...
分类:
其他好文 时间:
2017-04-06 14:54:05
阅读次数:
188
直接在plugins 外层加上 pluginManagement 即可。 In my case of a similar problem, instead of using Andrew's suggestion for the fix, it worked simply after I intro ...
分类:
其他好文 时间:
2017-04-05 21:55:05
阅读次数:
178
1 Java 和 MySQL 怎么建立连接 2 通过Java怎么对数据库进行操作 1 package day01; 2 3 import java.sql.Connection; 4 import java.sql.DriverManager; 5 import java.sql.ResultSet ...
分类:
数据库 时间:
2017-04-05 20:00:00
阅读次数:
363
mvn archetype:generate -DgroupId={groupId} -DartifactId={artifactId} -Dpackage={package} -DarchetypeVersion=1.0-SNAPSHOT -DarchetypeGroupId=com.selico ...
分类:
其他好文 时间:
2017-04-05 17:46:44
阅读次数:
178
Given numRows, generate the first numRows of Pascal's triangle.For example, given numRows = 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]] 思路: ...
分类:
其他好文 时间:
2017-04-05 00:51:11
阅读次数:
142