I have a Linear Layout that has a Button and a TextView on it. I have written a OnTouchEvent for the activity. The code works fine if I touch on the screen, but if I touch t
you can also try onUserInteraction():
onUserInteraction()
@Override public void onUserInteraction(){ //your code here super.onUserInteraction(); }
works well for me!