背景 代码 先上布局文件:
这里没有TextView,我最后是将路径以System.out.println方式输出的。初始化:button =
(Button)findViewById(R.id.button); pic = (ImageView) findViewByI...
分类:
移动开发 时间:
2014-05-17 01:44:20
阅读次数:
749
-webkit-transition:all 0.2s
ease-in-out;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s
ease-in-out;-ms-transition:all 0.2s ease-in-out;
分类:
其他好文 时间:
2014-05-17 00:40:18
阅读次数:
230
gdb vc调试对照表:实现功能 vc gdb修改后编译 f7 make跳出函数(step out)
shift+f11 finish,f重新启动 ctrl+shift+f5 run,r运行到指定行 f9+f5 tbreak,tb +
continue,c中断程序 ctrl+alt+break ct...
分类:
数据库 时间:
2014-05-17 00:28:01
阅读次数:
371
--存储过程名和参数,参数中in表示传入参数,out标示传出参数,inout表示传入传出参数create
procedure p_procedurecode(in sumdate varchar(10)) begin declare v_sql
varchar(500); --需要...
分类:
数据库 时间:
2014-05-16 20:51:07
阅读次数:
486
Jordan Brand has been going out of theAir
Jordan 6 World Cup Brazilordinary with some of their Retro colorways over the
last few years and the trend c...
分类:
其他好文 时间:
2014-05-15 16:47:00
阅读次数:
288
1. synchronized
If two threads are using the same function( here we use output to print out string) of another instance, if we want to make sure that these two threads are not disturbing each other.
...
分类:
其他好文 时间:
2014-05-15 11:14:14
阅读次数:
389
【题目】
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a linked list.
Input: (2 -> 4 -> 3) + (5 -> 6 -> 4)
Out...
分类:
其他好文 时间:
2014-05-15 05:13:49
阅读次数:
306
当你和数据库交互数据的时候,我们可能在一个字段里存了很多信息,并且使用符号分隔开来,那么怎样才能分别得到每一段的信息呢?比如说当你分期付款的时候,可能分好几个期次,那么我们应该怎么将他们分隔开,并且在现实的时候显示出已经选中的:<inputtype="checkbox"name=..
分类:
编程语言 时间:
2014-05-14 19:15:10
阅读次数:
504
1.简单Java多线程例子(继承Thread)publicclasshelloextendsThread{
privateStringname;
publichello(Stringname){
this.name=name;
}
publicvoidrun(){
for(inti=0;i<5;i++){
System.out.println(name+"运行..."+i);
}
}
publicstaticvoidmain(String[]args){
hellohel..
分类:
编程语言 时间:
2014-05-14 17:45:57
阅读次数:
318
定义一个存储过程,用到游标,从一个表中取值,插入到另外一个表中。drop procedure
if exists search_test;create procedure search_test(in id int,out out_min_id
varchar(200))begindeclare f...
分类:
数据库 时间:
2014-05-14 07:41:31
阅读次数:
361