报错信息

第一种:This custom view should extend androidx.appcompat.widget.AppCompatTextView instead(这是新版)

第二种:This custom view should extend android.support.v7.widget.AppCompatTextView instead(这是旧版) 

This custom view should extend androidx.appcompat.widget.AppCompatTextView instead_报错信息 

解决方案
import android.annotation.SuppressLint;
@SuppressLint("AppCompatCustomView")

This custom view should extend androidx.appcompat.widget.AppCompatTextView instead_android_02