docu
This commit is contained in:
parent
0a8d73dc0b
commit
4144639b75
|
@ -44,11 +44,16 @@ public class ClickableLinksDelegate {
|
||||||
|
|
||||||
public boolean onTouch(MotionEvent event) {
|
public boolean onTouch(MotionEvent event) {
|
||||||
if(event.getAction()==MotionEvent.ACTION_CANCEL){
|
if(event.getAction()==MotionEvent.ACTION_CANCEL){
|
||||||
|
// the gestureDetector does not provide a callback for CANCEL, therefore:
|
||||||
|
// remove background color of view before passing event to gestureDetector
|
||||||
resetAndInvalidate();
|
resetAndInvalidate();
|
||||||
}
|
}
|
||||||
return gestureDetector.onTouchEvent(event);
|
return gestureDetector.onTouchEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* remove highlighting from span and let the system redraw the view
|
||||||
|
*/
|
||||||
private void resetAndInvalidate() {
|
private void resetAndInvalidate() {
|
||||||
hlPath=null;
|
hlPath=null;
|
||||||
selectedSpan=null;
|
selectedSpan=null;
|
||||||
|
@ -64,6 +69,12 @@ public class ClickableLinksDelegate {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* GestureListener for spans that represent URLs.
|
||||||
|
* onDown: on start of touch event, set highlighting
|
||||||
|
* onSingleTapUp: when there was a (short) tap, call onClick and reset highlighting
|
||||||
|
* onLongPress: copy URL to clipboard, let user know, reset highlighting
|
||||||
|
*/
|
||||||
private class LinkGestureListener extends GestureDetector.SimpleOnGestureListener {
|
private class LinkGestureListener extends GestureDetector.SimpleOnGestureListener {
|
||||||
@Override
|
@Override
|
||||||
public boolean onDown(@NonNull MotionEvent event) {
|
public boolean onDown(@NonNull MotionEvent event) {
|
||||||
|
|
Loading…
Reference in New Issue