如何弃用自定义视图并在 XML 布局中显示贬值

How to deprecate A CustomView and show the deprecation at the XML Layout

是否可以弃用 CustomView 并使 xml 布局反映弃用?

例如,我弃用了我的自定义视图:

@Deprecated
class SomeCustomView()

然后我希望使用此自定义视图的 xml 布局指示它已被弃用,可能类似于:

<com.sample.directory.SomeCustomView android:layout_width="match_parent" android:layout_height="0dp"/>

这可能吗?

在所有构造函数和自定义视图的 class 名称前添加它。

/** @deprecated */
    @Deprecated