Класс, на который ссылается файл макета, com.bla.bla.BlurAndDimView, не был найден в проекте или библиотеках

#android

Вопрос:

это код ниже я получаю ошибку от com.bla.bla.BlurAndDimView может ли кто-нибудь помочь мне с тем, как это сделать

 <androidx.drawerlayout.widget.DrawerLayout 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:id="@ id/drawer_layout"
    tools:context=".MainActivity">

        <androidx.viewpager2.widget.ViewPager2
            android:id="@ id/pager"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

        <com.bla.bla.BlurAndDimView
            android:id="@ id/blurrer"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="?android:attr/actionBarSize"
            android:visibility="invisible" />

        <ListView
            android:id="@ id/menu_list"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="start"
            android:choiceMode="singleChoice" />
</androidx.drawerlayout.widget.DrawerLayout>```