android拖动图片移动效果(4)
来源:未知 责任编辑:责任编辑 发表时间:2014-01-20 07:51 点击:次
2、如果return true 说明消费了onTouch事件 onTouch事件结束了
但在实际操作中 除了ACTION_DOWN事件以外,其余的事件只有返回true的那个方法才能捕捉到。所以 返回false的时候只能捕捉到每次的第一个DOWN事件 后面的MOVE 和UP事件就捕捉不到了。
DisplayMetics 类:
Andorid.util 包下的DisplayMetrics 类提供了一种关于显示的通用信息,如显示大小,分辨率和字体。
为了获取DisplayMetrics 成员,首先初始化一个对象如下:
Java代码
DisplayMetrics metrics = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics;
//getWindowManager() 获取显示定制窗口的管理器
//getDefaultDisplay() 获取默认显示Display对象
//getMetrics(dm) 通过Display对象的数据来初始化一个DisplayMetrics对象
v.layout(left, top, right, bottom);
Assign a size and position to a view and all of its descendants
This is the second phase of the layout mechanism. (The first is measuring). In this phase, each parent calls layout on all of its children to position them. This is typically done using the child measurements that were stored in the measure pass(). Derived classes with children should override onLayout. In that method, they should call layout on each of their their children.
Parameters:
l Left position, relative to parent
t Top position, relative to parent
r Right position, relative to parent
b Bottom position, relative to parent
作者“twy”
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>