当我尝试设置 TextView 的背景时,错误膨胀 class TextView

Error inflating class TextView when I try to set background of TextView

我使用 RecyclerView 来获取数据。在 Adapter 中是膨胀 class TextView 的错误。当我不设置背景时,一切正常,但是如何避免这个错误?

           <TextView
            android:id="@+id/message_item_message_textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="message"
            android:background="@drawable/message_item_background_sender" // this line causes problem
            android:textColor="@android:color/black" />

问题是背景可绘制资源位于 drawable-v24 文件夹中。我将其移至可绘制文件夹并且它有效:)