event.getX():表示的是触摸的点距离自身左边界的距离 event.getY():表示的是触摸的点距离自身上边界的距离 event.getRawX:表示的是触摸点距离屏幕左边界的距离 event.getRawY:表示的是触摸点距离屏幕上边界的距离 View.getWidth():表示的是当前 ...
分类:
其他好文 时间:
2017-06-28 23:17:44
阅读次数:
252
原文:http://www.open-open.com/code/view/1421401009218 ...
分类:
Web程序 时间:
2017-06-19 14:18:12
阅读次数:
158
1 //多点触摸 放大,缩小 2 public class MainActivity extends ActionBarActivity { 3 4 @Override 5 protected void onCreate(Bundle savedInstanceState) { 6 super.on... ...
分类:
其他好文 时间:
2017-05-31 16:34:33
阅读次数:
207
OnKeyListener(键盘事件) 正则表达式 w:任意字符 +:一个或一个以上字符 1 TextView tv=(TextView) findViewById(R.id.keyTV02); 2 EditText input=(EditText) findViewById(R.id.keyET0 ...
分类:
移动开发 时间:
2017-05-26 10:57:37
阅读次数:
185
之所以做了这么一个Demo,是由于近期项目中有一个奇葩的需求:用户拍摄照片后,分享到微信的同一时候加入备注,想获取用户在微信的弹出框输入的内容。保存在自己的server上。而其实,这个内容程序是无法获取的,因此採取了一个折衷方案,将文字直接写在图片上。 首先上Demo效果图: 功能: 1.用户自由输 ...
分类:
移动开发 时间:
2017-05-14 16:14:01
阅读次数:
391
Object类型 创建object实例方法有两种。第一种方法使用new操作符后跟object构造函数。如下: 第二种方法使用对象字面量表示法。如下: Array类型 检测数组 使用instanceof操作符: ECMAScript5新增加Array.isArray()方法。这个方法的目的是最终确定某 ...
分类:
其他好文 时间:
2017-05-11 17:05:08
阅读次数:
273
//创建点对象class Point{ private int x; private int y; Point(int x,int y){ this.x = x; this.y = y; } public int getX(){ return x; } public int getY(){ retu ...
分类:
编程语言 时间:
2017-05-10 18:55:03
阅读次数:
236
public class MyDate { private int year,month,day; private static int thisYear; static { thisYear=2012; } public MyDate(int year,int month,int day) { t ...
分类:
其他好文 时间:
2017-05-02 18:22:07
阅读次数:
189
小分享:我有几张阿里云优惠券,用券购买或者升级阿里云相应产品最多可以优惠五折!领券地址:https://promotion.aliyun.com/ntms/act/ambassador/sharetouser.html?userCode=ohmepe03 通过《ASP.NET Web API的Con ...
将一个数据转换成一个属性的类型,属性可能为可空类型时,这时报以下错误: 从“System.String”到“System.Nullable`1[[System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a ...
分类:
其他好文 时间:
2017-04-22 12:41:09
阅读次数:
198