gpt4 book ai didi

c# - 如何在 Android 中禁用布局的所有触摸

转载 作者:行者123 更新时间:2023-11-30 01:34:52 24 4
gpt4 key购买 nike

我正在尝试在 Xamarin.Android 中实现底部工作表,当底部工作表处于 Activity 状态时,我想禁用对所有非底部工作表(即主布局)的所有触摸。

主要.axml:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/main_layout">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

<!-- Main Layou -->
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/main_content"
android:paddingLeft="16dp"
android:paddingRight="16dp" >
<Button
android:id="@+id/btn_test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/logout"
android:layout_gravity="center" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="16dp"
android:clickable="true"
android:src="@drawable/ic_plus" />
</FrameLayout>

<FrameLayout
android:id="@+id/tint"
android:background="#000000"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<!-- Bottom sheet -->
<FrameLayout
android:id="@+id/bottom_fragment_container"
android:layout_width="match_parent"
android:layout_height="160dp"
android:background="#E0E0E0"
android:layout_gravity="bottom"
android:elevation="16dp"
android:translationY="160dp" />

我尝试遍历所有子项并禁用它们,但这会改变按钮的外观,我想避免这种情况。我还尝试将布局的 Enabled 属性设置为 false,但按钮仍然可以触摸。

我认为我需要以某种方式在所有触摸到达按钮之前拦截它们(以及稍后将出现的所有其他触摸),但我不知道该怎么做。通过拦截所有触摸,我还可以在这些触摸后隐藏底部工作表。

最佳答案

创建一个覆盖整个屏幕的透明 RelativeLayout 并在其中使用 android:clickable="true" 属性以确保它拦截所有点击事件。

然后将 android:layout_alignParentBottom 添加到您的 bottom sheet 并将其放入这个新创建的 RelativeLayout 中。这样它就会出现在底部,其他所有内容都不可点击。

<FrameLayout>

<!-- Main Layout -->


<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0000"
android:clickable="true">

<FrameLayout
android:id="@+id/bottom_fragment_container"
android:layout_width="match_parent"
android:layout_height="160dp"
android:background="#E0E0E0"
android:layout_alignParentBottom="true"
android:elevation="16dp"
android:translationY="160dp" />

</RelativeLayout>

</FrameLayout>

关于c# - 如何在 Android 中禁用布局的所有触摸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35229036/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com