Union:作用:把2次或多次查询结果合并起来要求:两次查询的列数一致推荐:查询的每一列,相对应的列类型也一样可以来自于多张表多次sql语句取出的列名可以不一致,此时,以第1个sql的列名为准例一、select user_name,user_email,msg_content from ecs_fe...
分类:
数据库 时间:
2014-06-27 21:07:52
阅读次数:
313
android的四大组件中就有Content Provider,对其他应用,提供自己的数据,所以,一般情况下,android应用不需要提供content provider。 1. 简单的数据库表单字段声明: MySqlName.java public static f...
分类:
移动开发 时间:
2014-06-27 00:21:13
阅读次数:
430
盒模型包括:content,padding,margin,borderIE下的盒模型:width包括content的宽度+2倍的padding宽度+2倍的border宽度W3C标准的盒模型:width就是content的宽度定义 box-sizing: content-box; 时,浏览器对盒模型的...
分类:
其他好文 时间:
2014-06-26 21:31:00
阅读次数:
250
今天使用Fiddler构造一个POST请求,server端的PHP脚本的 $_POST数组中怎么也获取不到值,后来偶然发现是因为缺少了一个http头:Content-Type: application/x-www-form-urlencoded另外提示一点的是: 鉴于有如下功能,我们不需要去计算po...
分类:
其他好文 时间:
2014-06-26 19:55:10
阅读次数:
218
方法scrollTo: (内容的左上角)达到某个地点scrollBy: 根据当前位置,再移动多少属性:mScrollX, 以下是文档解释The offset, in pixels, by which the content of this view is scrolled horizontally....
分类:
移动开发 时间:
2014-06-26 19:52:04
阅读次数:
252
postScale:设置图片的缩放packagecom.example.examples_05_09;importandroid.R.integer;importandroid.annotation.SuppressLint;importandroid.content.Context;importa...
分类:
其他好文 时间:
2014-06-26 18:02:00
阅读次数:
153
packagecom.example.examples_05_17;importandroid.R.drawable;importandroid.R.integer;importandroid.content.Context;importandroid.graphics.Canvas;importa...
分类:
其他好文 时间:
2014-06-26 17:57:31
阅读次数:
172
知识点Matrix:旋转对象Reset:重载createBitmap:创建位图//代码示例packagecom.example.examples_05_08;importandroid.content.Context;importandroid.graphics.Bitmap;importandro...
分类:
其他好文 时间:
2014-06-26 17:52:57
阅读次数:
157
packagecom.example.examples_05_12;importandroid.content.Context;importandroid.graphics.Bitmap;importandroid.graphics.Bitmap.Config;importandroid.graph...
分类:
其他好文 时间:
2014-06-26 17:37:58
阅读次数:
188
在项目中用到了一个如下功能:双击自定义imageview控件,然后控件显示一个红色边框,表示该控件处于可编辑状态,再次双击边框消失,控件不可再被编辑。现把双击和画线部分单独摘出来,希望能帮到别人。
首先是自定义控件的代码:
import android.content.Context;
import android.graphics.Canvas;
import android.graphic...
分类:
其他好文 时间:
2014-06-26 10:48:26
阅读次数:
320