原以为是用fieldchangelistener实现的,草草地涂了些代码,发现并无反应,甚至当添加focusable的时候,都不成功。于是怀疑是方法用错了,照理touch应该是另一种方法,果然,在API上search touch,发现了这个touchevent。这里用DOWN或者CLICK都可以,整个事件触摸的流程是先DOWN,然后CLICK,最后UP。
protected boolean touchEvent(TouchEvent event) {
switch(event.getEvent()) {
case TouchEvent.DOWN:
//TODO;
case TouchEvent.MOVE:
return true;
case TouchEvent.UP:
//TODO;
case TouchEvent.CLICK:
//TODO;
}
}
文章评分1次,平均分5.0:★★★★★