如何禁用顶部透明层的触摸?

How to disable touch of top transparent layer?

我需要自定义一个具有将月视图折叠为周视图功能的日历。为此,我正在使用 MaterialCalendarView 库。为此,我采用了一个框架,其中 MaterialCalendarView 作为底层,CollapsingToolbarLayout 在顶部作为透明视图。现在的问题是,我无法使用我的 calendarView,因为它是底层并且禁用 CollapsingToolbarLayout.

的触摸

我已经尝试设置 CoodinatorLayoutandroid:clickable="false" 及其所有子元素,还尝试使用:collapsingToolbarLayout.setEnabled(false); 并将触摸侦听器设置为 false,但没有成功。

这是我的 XML 文件:

-----some code-----
---
--
-
<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:animateLayoutChanges="true">

        <com.prolificinteractive.materialcalendarview.MaterialCalendarView
            android:id="@+id/calendarView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clickable="true"
            android:focusable="true"
            android:focusableInTouchMode="true"
            app:mcv_allowClickDaysOutsideCurrentMonth="false"
            app:mcv_firstDayOfWeek="monday"
            app:mcv_tileHeight="36dp" />

        <android.support.design.widget.CoordinatorLayout
            android:id="@+id/coordinator_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@android:color/transparent"
            android:clickable="false"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:focusedByDefault="false"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <android.support.design.widget.AppBarLayout
                android:id="@+id/app_bar_layout"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/transparent"
                android:clickable="false"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:focusedByDefault="false">

                <android.support.design.widget.CollapsingToolbarLayout
                    android:id="@+id/collapsing_layout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:clickable="false"
                    android:focusable="false"
                    android:focusableInTouchMode="false"
                    android:focusedByDefault="false"
                    app:layout_scrollFlags="scroll|exitUntilCollapsed">

                    <android.support.v7.widget.Toolbar
                        android:id="@+id/dummy_toolbar"
                        android:layout_width="match_parent"
                        android:layout_height="72dp"
                        android:background="@android:color/transparent"
                        android:clickable="false"
                        android:focusable="false"
                        android:focusableInTouchMode="false"
                        android:focusedByDefault="false"
                        android:visibility="invisible"
                        app:contentInsetStart="0dp"
                        app:layout_collapseMode="pin">

                        <View
                            android:id="@+id/dummy_toolbar_view"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:background="@android:color/transparent"
                            android:clickable="false"
                            android:focusable="false"
                            android:focusableInTouchMode="false"
                            android:focusedByDefault="false" />

                    </android.support.v7.widget.Toolbar>

                    <View
                        android:id="@+id/transparent_view"
                        android:layout_width="match_parent"
                        android:layout_height="252dp"
                        android:background="@android:color/transparent"
                        android:clickable="false"
                        android:focusable="false"
                        android:focusableInTouchMode="false"
                        android:focusedByDefault="false" />

                </android.support.design.widget.CollapsingToolbarLayout>

            </android.support.design.widget.AppBarLayout>

            <android.support.v4.widget.NestedScrollView
                android:id="@+id/nested_scroll_view"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/bg_dark_gray"
                android:fillViewport="true"
                android:scrollbars="none"
                app:layout_behavior="@string/appbar_scrolling_view_behavior">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:focusable="true"
                    android:focusableInTouchMode="true"
                    android:orientation="vertical">

                    <android.support.v7.widget.RecyclerView
                        android:id="@+id/recycler_occasions"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:focusable="false" />

                    <TextView
                        android:id="@+id/txt_login"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:layout_marginStart="@dimen/dp_50"
                        android:layout_marginTop="@dimen/dp_30"
                        android:layout_marginEnd="@dimen/dp_50"
                        android:layout_marginBottom="@dimen/dp_100"
                        android:background="@drawable/btn_gradient_bg"
                        android:fontFamily="@font/poppins_semibold"
                        android:gravity="center"
                        android:padding="@dimen/dp_16"
                        android:text="@string/next"
                        android:textAllCaps="true"
                        android:textColor="@color/white"
                        android:textSize="@dimen/btn_text_size" />
                </LinearLayout>

            </android.support.v4.widget.NestedScrollView>
        </android.support.design.widget.CoordinatorLayout>
    </RelativeLayout>

这就是我在 java 文件中所做的:

collapsingToolbarLayout.setEnabled(false);
dummyToolbarView.setEnabled(false);
appBarLayout.setEnabled(false);
coordinatorLayout.setEnabled(false);

collapsingToolbarLayout.setOnTouchListener((v, event) -> {
      calendarView.dispatchTouchEvent(event);
      return false;
});
appBarLayout.setOnTouchListener((v, event) -> {
      calendarView.dispatchTouchEvent(event);
      return false;
});
coordinatorLayout.setOnTouchListener((v, event) -> {
      calendarView.dispatchTouchEvent(event);
      return false;
});
transparentView.setOnTouchListener((v, event) -> {
      calendarView.dispatchTouchEvent(event);
      return false;
});
dummyToolbarView.setOnTouchListener((v, event) -> {
      calendarView.dispatchTouchEvent(event);
      return false;
});


collapsingToolbarLayout.setClickable(false);
coordinatorLayout.setClickable(false);
appBarLayout.setClickable(false);
transparentView.setClickable(false);

禁用所有视图的触摸后,仍然会调用 onClick,这就是我也禁用点击的原因。

通过这样做,当它处于折叠模式时我可以处理 MaterialCalendarView 的触摸,但是当它展开时我无法使用它,其他视图正在点击。

请帮我解决这个问题。我想访问 MaterialCalendarView 触摸并禁用 CoordinatorLayout 内的视图触摸,NestedScrollView 除外。

提前致谢。

onInterceptTouchEvent 在分派到子视图之前响应父布局触摸事件。

@Override
 public boolean onInterceptTouchEvent(MotionEvent ev) {
 // Decide if to intercept or not
 return true;
 }

Touch flow control in Android

感谢大家的付出。

我通过覆盖 dispatchTouchEvent 解决了这个问题。感谢@Abyss post - 解决方案 2 对我有用:

@Override
    public boolean dispatchTouchEvent(MotionEvent ev) {
        return super.dispatchTouchEvent(ev);
    }

在每个视图的触摸上调度日历触摸

collapsingToolbarLayout.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });
        dummyToolbarView.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });
        appBarLayout.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });
        coordinatorLayout.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });
        transparentView.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });
        dummyToolbar.setOnTouchListener((v, event) -> {
            calendarView.dispatchTouchEvent(event);
            return false;
        });