1

在这里,我想在单击打开视图时禁用框架布局。从菜单图标中查看浴缸弹出窗口,在框架布局中我变形了片段。(我的一种解决方案是获取所有视图并 setClickable = false。)

但我正在寻找其他一些解决方案,比如专注于当前视图,以便将其他视图设置为禁用。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
android:fitsSystemWindows="true"
android:orientation="vertical"
tools:context="com.example.yagneshshinde.thalischedule.menuhome.MainActivity">

<include layout="@layout/toolbar" />

<ViewStub
    android:id="@+id/stub_import"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:inflatedId="@+id/content_import"
    android:layout="@layout/menu_layout"
    android:visibility="gone" />

<ViewStub
    android:id="@+id/calander_import"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:clickable="true"
    android:inflatedId="@+id/calander_content_import"
    android:layout="@layout/calendar_dialog_basic"
    android:visibility="gone" />

<LinearLayout
    android:id="@+id/frameLayoutLinear"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/frameContainer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:foreground="@drawable/dim_layout">

    </FrameLayout>
</LinearLayout>

<!-- <include layout="@layout/content_main" />-->


  </LinearLayout>
4

0 回答 0