20
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ScrollViewとカスタムビューのタッチイベント

Last updated at Posted at 2014-07-30

ScrollViewにカスタムビューを配置したところ、カスタムビューのタッチイベントをScrollViewに奪われてしまいました。
こんなときはViewParent#requestDisallowInterceptTouchEvent(boolean)を呼び出せば、ScrollViewにタッチイベントを奪われません。

public class HogeView extends View {

	//...
	
	@Override
	public boolean onTouchEvent(MotionEvent event) {
		int action = event.getActionMasked();
		if (action == MotionEvent.ACTION_DOWN) {
			getParent().requestDisallowInterceptTouchEvent(true);

			//...

			return true;
		}
		
		//...
		
		return false;
	}
}

※ViewクラスはViewParentインターフェースを実装していませんが、View#getParentでViewParentを取得できます。
※ViewGroupクラスはViewParentインターフェースを実装しているので、例えばFrameLayoutなどのViewGroupを継承しているクラスはgetParentしなくて良いです。

20
20
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?