RaidenX5

Results 2 comments of RaidenX5

Try this : imageviewtouch.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View view, MotionEvent motionEvent) { switch (motionEvent.getAction()) { case MotionEvent.ACTION_DOWN: Log.d("touchme", "down"); view.getParent().requestDisallowInterceptTouchEvent(true); //view.requestDisallowInterceptTouchEvent(true); break; case MotionEvent.ACTION_CANCEL: case MotionEvent.ACTION_UP: Log.d("touchme", "up");...

Hi. Sorry I commented on old thread, I encounter same problem and have gdb log $ gdb /data/data/com.termux/files/usr/bin/httpd GNU gdb (GDB) 8.3.1 Copyright (C) 2019 Free Software Foundation, Inc. License...