blob: ca249e23c421e8985ac73634d6255d41c05ddb51 [file] [log] [blame]
Alan Viverette01a04f12015-12-10 14:07:51 -05001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Noah Wange64cc262015-12-15 09:05:30 -080017package com.android.settings;
Alan Viverette01a04f12015-12-10 14:07:51 -050018
19import android.annotation.Nullable;
20import android.content.Context;
21import android.util.AttributeSet;
22import android.view.MotionEvent;
23import android.widget.FrameLayout;
24
25/**
26 * Extension of FrameLayout that consumes all touch events.
27 */
28public class TouchBlockingFrameLayout extends FrameLayout {
29 public TouchBlockingFrameLayout(Context context, @Nullable AttributeSet attrs) {
30 super(context, attrs);
31 }
32
33 @Override
Alan Viverette764dce22016-02-05 16:13:27 -050034 public boolean dispatchTouchEvent(MotionEvent ev) {
35 return false;
Alan Viverette01a04f12015-12-10 14:07:51 -050036 }
37}